Skip to content

Commit

Permalink
ci: Fix pnpm setup in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
debjitbis08 committed Nov 11, 2024
1 parent c23f0cc commit 46d0ebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: "latest" # Use the latest version of Node.js
cache: "pnpm" # Cache for pnpm dependencies
cache: "pnpm" # Cache pnpm dependencies
- name: Setup pnpm
run: npm install -g pnpm
run: corepack enable # Enable pnpm through Corepack, included in Node.js
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
Expand Down

0 comments on commit 46d0ebe

Please sign in to comment.