Skip to content

Commit

Permalink
chore: Update GitHub Actions workflow to use pnpm for dependency inst…
Browse files Browse the repository at this point in the history
…allation
  • Loading branch information
Tsuzat committed Dec 29, 2024
1 parent e8cf88b commit 8fb8334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn' # Set this to npm, yarn or pnpm.
cache: 'pnpm' # Set this to npm, yarn or pnpm.

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable # Set this to dtolnay/rust-toolchain@nightly
Expand All @@ -52,7 +52,7 @@ jobs:

- name: install frontend dependencies
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
run: yarn install # change this to npm or pnpm depending on which one you use.
run: pnpm install # change this to npm or pnpm depending on which one you use.

- uses: tauri-apps/tauri-action@v0
env:
Expand Down

0 comments on commit 8fb8334

Please sign in to comment.