Skip to content

v2.4.1

v2.4.1 #9

Workflow file for this run

name: Publish to NPM
on:
release:
types:
- published
permissions:
id-token: write
contents: read
jobs:
publish:
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm publish --provenance