Skip to content

Commit bb751f9

Browse files
committed
Fix release action package manager issue
1 parent e40bbe8 commit bb751f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/setup-node@v4
3838
with:
3939
node-version: lts/*
40-
cache: 'yarn' # Set this to npm, yarn or pnpm.
40+
cache: 'npm' # Set this to npm, yarn or pnpm.
4141

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

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

5757
- uses: tauri-apps/tauri-action@v0
5858
env:

0 commit comments

Comments
 (0)