We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 283be43 commit 82f2246Copy full SHA for 82f2246
1 file changed
.github/workflows/release.yml
@@ -27,7 +27,13 @@ jobs:
27
node-version: '22'
28
29
- name: Update npm for OIDC trusted publishing
30
- run: npm install -g npm@11
+ run: |
31
+ curl -fsSL https://registry.npmjs.org/npm/-/npm-11.3.0.tgz -o /tmp/npm.tgz
32
+ npm_root="$(dirname "$(dirname "$(which npm)")")/lib/node_modules/npm"
33
+ tar -xzf /tmp/npm.tgz -C /tmp
34
+ rm -rf "$npm_root"
35
+ mv /tmp/package "$npm_root"
36
+ npm --version
37
38
- name: Install dependencies
39
run: bun install
0 commit comments