Skip to content

allow hyphen in node name (fixes #5) #3

allow hyphen in node name (fixes #5)

allow hyphen in node name (fixes #5) #3

Workflow file for this run

name: Publish NPM
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}