Skip to content

Update npm publish workflow for Node 20 #92

Update npm publish workflow for Node 20

Update npm publish workflow for Node 20 #92

Workflow file for this run

name: NPM Publish
on:
release:
types: [created]
workflow-dispatch

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

View workflow run for this annotation

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

Invalid workflow file

You have an error in your yaml syntax on line 6
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 }}