Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ jobs:
node-version: 22
registry-url: "https://registry.npmjs.org"

- name: Pin npm CLI (OIDC trusted publisher requires npm >= 11.5.1)
# actions/setup-node ships Node 22 with npm 10.9.x, which has no OIDC
Comment thread
mandarini marked this conversation as resolved.
# trusted-publisher code path. Without npm >= 11.5.1 the publish falls
# back to the .npmrc placeholder token written by setup-node and the
# registry returns 404. No NPM_TOKEN is configured on this repo by
# design — auth is OIDC only. Do not remove without restoring a token.
run: npm install -g npm@11.5.2

- name: Determine version
id: version
env:
Expand Down