Skip to content

chore: release v0.2.0 #11

chore: release v0.2.0

chore: release v0.2.0 #11

Workflow file for this run

name: publish npm
on:
push:
tags:
- 'v*'
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm i pnpm -g
- run: pnpm install --no-frozen-lockfile
- run: pnpm build
- run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}