Skip to content

Commit

Permalink
fix: Should install pnpm before node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mrv777 committed Oct 11, 2024
1 parent 0a45f80 commit 7fa7978
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ jobs:
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.

- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm' # Set this to npm, yarn or pnpm.

- name: Install pnpm
run: npm install -g pnpm

Expand All @@ -51,6 +45,13 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm' # Set this to npm, yarn or pnpm.

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
Expand Down

0 comments on commit 7fa7978

Please sign in to comment.