Skip to content

Update npm publish workflow for Node 20 #93

Update npm publish workflow for Node 20

Update npm publish workflow for Node 20 #93

Workflow file for this run

name: NPM Publish

Check failure on line 1 in .github/workflows/npm-publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/npm-publish.yml

Invalid workflow file

`workflow-dispatch` is not a valid event name
on:
release:
types: [created]
workflow-dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}