Skip to content

Simplify: Use official npm Trusted Publishing workflow #13

Simplify: Use official npm Trusted Publishing workflow

Simplify: Use official npm Trusted Publishing workflow #13

Workflow file for this run

name: Publish Package
on:
push:
tags:
- "v*"
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
# Ensure npm 11.5.1 or later is installed for proper OIDC support
- name: Update npm
run: npm install -g npm@latest
- run: npm ci
- run: npm run build --if-present
- run: npm publish --access public