Skip to content

Publish to npmjs

Publish to npmjs #10

Workflow file for this run

name: Publish to npmjs
on:
workflow_run:
workflows:
- "Run Tests"
types:
- completed
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' && github.ref_type == 'tag' && github.ref == 'refs/heads/master' }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
- name: Publish to npmjs
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}