Skip to content

chore: update GitHub Actions to use latest versions and improve permi… #28

chore: update GitHub Actions to use latest versions and improve permi…

chore: update GitHub Actions to use latest versions and improve permi… #28

Workflow file for this run

name: Npm Publish
on:
push:
tags:
- "v*.*.*"
permissions:
id-token: write # Required for OIDC
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm publish