We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e40bbe8 commit bb751f9Copy full SHA for bb751f9
.github/workflows/release.yml
@@ -37,7 +37,7 @@ jobs:
37
uses: actions/setup-node@v4
38
with:
39
node-version: lts/*
40
- cache: 'yarn' # Set this to npm, yarn or pnpm.
+ cache: 'npm' # Set this to npm, yarn or pnpm.
41
42
- name: install Rust stable
43
uses: dtolnay/rust-toolchain@stable # Set this to dtolnay/rust-toolchain@nightly
@@ -52,7 +52,7 @@ jobs:
52
53
- name: install frontend dependencies
54
# 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.
+ run: npm install # change this to npm or pnpm depending on which one you use.
56
57
- uses: tauri-apps/tauri-action@v0
58
env:
0 commit comments