We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2a169e commit b0f16d9Copy full SHA for b0f16d9
.github/workflows/release.yml
@@ -53,11 +53,13 @@ jobs:
53
run: |
54
pnpm install --frozen-lockfile
55
56
- # NPM trusted publishing requires npm CLI v11.5.1+. Note that pnpm uses
57
- # npm under the hood for publishes.
58
- - name: Print npm CLI version
+ # NPM trusted publishing requires npm CLI v11.5.1+. Node.js 22 ships with
+ # npm 10.x, so we need to upgrade. Note that pnpm uses npm under the hood
+ # for publishes.
59
+ - name: Upgrade npm for OIDC support
60
- echo "npm version is $(npm --version)"
61
+ npm install -g npm@11.11.0
62
+ echo "✅ npm upgraded to $(npm --version)"
63
64
- name: Create Release Pull Request or Publish to npm
65
id: changesets
0 commit comments