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 becb19b commit aa97bc1Copy full SHA for aa97bc1
1 file changed
.github/workflows/npm_release.yml
@@ -175,8 +175,10 @@ jobs:
175
path: dist
176
- name: Update npm (required for OIDC trusted publishing)
177
run: |
178
- npm install -g npm@^11.5.1
179
- npm --version
+ corepack enable npm
+ corepack install -g npm@11.5.1
180
+ test "$(npm --version)" = "11.5.1"
181
+ test "$(npx --version)" = "11.5.1"
182
- name: Publish package (OIDC trusted publishing)
183
if: ${{ vars.USE_NPM_TOKEN != 'true' }}
184
0 commit comments