Skip to content

v0.1.0

v0.1.0 #5

Workflow file for this run

name: 🚀 Release
on:
release:
types: [released]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: |
npm install
npm run build
npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_ACCESS_TOKEN}}