Skip to content

v0.3.27

v0.3.27 #21

Workflow file for this run

name: Publish package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- name: clean install dependencies
run: npm ci
- name: build package
run: npm run build
- name: publishing
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}