Skip to content

Release

Release #4

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
build:
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'
- run: npm install --global pnpm
- run: pnpm i
- run: npm run test
- run: npm run build
- run: npm publish -w ./packages/types --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish -w ./packages/util --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}