Skip to content

bump to 4.0.0 due to using [email protected]

bump to 4.0.0 due to using [email protected] #59

Workflow file for this run

name: npm-publish
# run when a tag is pushed or kick off manually
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}