Skip to content

v0.4.0

v0.4.0 #13

Workflow file for this run

name: Publish Package to npmjs
on:
workflow_run:
workflows: ["Test library"]
branches: [main]
types:
- completed
release:
types: [published]
defaults:
run:
working-directory: packages/next-public-ts
jobs:
build-publish:
name: Build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
# Install dependencies, build, and publish to npm
- run: npm ci
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}