Skip to content

v4.0.5

v4.0.5 #31

Workflow file for this run

name: release_to_npm
on:
release:
types:
- published
jobs:
release_to_npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- uses: actions/setup-node@v4
with:
node-version: '16.16.0'
registry-url: https://registry.npmjs.org/
- run: |
npm i
npm run build
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}