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: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ jobs:
cache: pnpm
registry-url: https://registry.npmjs.org

# setup-node pins an npm that predates OIDC publishing on some images.
# The Node 20 image ships npm 10, which predates OIDC publishing; trusted
# publishing needs >= 11.5.1. Pinned to the 11 line on purpose: `npm@latest`
# is npm 12, which refuses to run on Node 20 and fails this step outright.
- name: Use an npm that supports trusted publishing
run: npm install -g npm@latest
run: |
npm install -g npm@^11.5.1
npm --version

- run: pnpm install --frozen-lockfile

Expand Down
Loading