Skip to content

Publish to npm

Publish to npm #1

Workflow file for this run

name: Publish to npm
# https://stackoverflow.com/questions/69063452/github-actions-on-release-created-workflow-trigger-not-working
on:
workflow_run:
workflows: ["Release on tag"]
types: [completed]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}