We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1811317 commit 0fb5e8fCopy full SHA for 0fb5e8f
1 file changed
.github/workflows/publish-to-npm-on-tag.yml
@@ -12,9 +12,6 @@ permissions:
12
jobs:
13
publish:
14
runs-on: ubuntu-latest
15
- permissions:
16
- contents: read
17
- id-token: write
18
steps:
19
- name: Check out repository
20
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -26,6 +23,11 @@ jobs:
26
23
with:
27
24
cache: npm
28
25
node-version-file: '.nvmrc'
+ registry-url: 'https://registry.npmjs.org'
+
+ # Ensure npm 11.5.1 or later is installed
29
+ - name: Update npm
30
+ run: npm install -g npm@latest
31
32
- name: Install dependencies
33
run: npm ci
0 commit comments