Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/force-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
node-version: 22
registry-url: "https://registry.npmjs.org"

# npm OIDC trusted publishing requires npm >= 11.5.1; Node 22 bundles npm 10.x.
- name: Upgrade npm for trusted publishing
run: npm install -g npm@latest && npm --version

Comment on lines +25 to +27
- name: Install dependencies
run: yarn install

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
node-version: 22
registry-url: "https://registry.npmjs.org"

# npm OIDC trusted publishing requires npm >= 11.5.1; Node 22 bundles npm 10.x,
# which signs provenance but cannot do the trusted-publishing token exchange
# (publish then fails with E404-on-PUT).
- name: Upgrade npm for trusted publishing
run: npm install -g npm@latest && npm --version

Comment on lines +33 to +35
- name: Install dependencies
run: yarn install

Expand Down
Loading