Skip to content

Release 🚀

Release 🚀 #4

Workflow file for this run

name: Release 🚀
on:
workflow_dispatch:
release:
types:
- published
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
registry-url: "https://npm.pkg.github.com"
- run: npm ci --no-workspaces
- run: npm run build
- run: npm publish --tag canary # ${{ github.event.release.prerelease && 'prerelease' || 'latest' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.GHCR_TOKEN_RW }}