We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19ec59d commit 626a38dCopy full SHA for 626a38d
1 file changed
.github/workflows/release.yml
@@ -19,11 +19,19 @@ jobs:
19
with:
20
fetch-depth: 0
21
22
+ - name: Clear npm auth
23
+ run: |
24
+ rm -f ~/.npmrc
25
+ rm -f .npmrc
26
+ npm config delete //registry.npmjs.org/:_authToken || true
27
+ npm config delete _authToken || true
28
+
29
- name: Setup Node.js
30
uses: actions/setup-node@v4
31
32
node-version: '20'
33
registry-url: 'https://registry.npmjs.org'
34
+ always-auth: true
35
36
- name: Install dependencies
37
run: npm install
0 commit comments