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 8356693 commit 5aab3bdCopy full SHA for 5aab3bd
.github/workflows/release.yml
@@ -21,18 +21,21 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v4
23
24
- - name: Install Pnpm
25
- run: npm i -g corepack@latest --force && corepack enable
+ # Update npm to the latest version to enable OIDC
+ # Use corepack to install pnpm
26
+ - name: Setup Package Managers
27
+ run: |
28
+ npm install -g npm@latest
29
+ npm --version
30
+ npm install -g corepack@latest --force
31
+ corepack enable
32
33
- name: Setup Node.js
34
uses: actions/setup-node@v4
35
with:
36
node-version: 22
37
cache: "pnpm"
38
- - name: Update npm
- run: npm install -g npm@latest && npm --version
-
39
- name: Install Dependencies
40
run: pnpm install
41
0 commit comments