We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f62ab75 commit 292fd40Copy full SHA for 292fd40
.github/workflows/npm_release.yml
@@ -177,8 +177,10 @@ jobs:
177
path: dist
178
- name: Update npm (required for OIDC trusted publishing)
179
run: |
180
- npm install -g npm@^11.5.1
181
- npm --version
+ corepack enable npm
+ corepack install -g npm@11.5.1
182
+ test "$(npm --version)" = "11.5.1"
183
+ test "$(npx --version)" = "11.5.1"
184
- name: Publish package (OIDC trusted publishing)
185
if: ${{ vars.USE_NPM_TOKEN != 'true' }}
186
0 commit comments