1 parent 05dcb3c commit f2ac57bCopy full SHA for f2ac57b
1 file changed
.github/workflows/publish.yml
@@ -16,9 +16,6 @@ jobs:
16
- name: Checkout repository
17
uses: actions/checkout@v6
18
19
- - name: Clear auth token for OIDC
20
- run: echo "NODE_AUTH_TOKEN=" >> $GITHUB_ENV
21
-
22
- uses: pnpm/action-setup@v6
23
name: Install pnpm
24
with:
@@ -31,6 +28,12 @@ jobs:
31
28
registry-url: "https://registry.npmjs.org"
32
29
package-manager-cache: false # never use caching in release builds
33
30
+ - name: Upgrade npm for OIDC
+ run: npm install -g npm@11.11.0
+
34
+ - name: Clear auth token for OIDC
35
+ run: echo "NODE_AUTH_TOKEN=" >> $GITHUB_ENV
36
37
- name: Install dependencies
38
shell: bash
39
run: pnpm install --frozen-lockfile
0 commit comments