Skip to content

actually update version #40

actually update version

actually update version #40

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
# Ensure npm 11.5.1 or later for trusted publishing
- run: npm install -g npm@latest
- run: npm ci
- run: npm run build --if-present
- run: npm publish --access public