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