We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb9f509 commit 9ff406eCopy full SHA for 9ff406e
.github/workflows/publish.yml
@@ -22,10 +22,14 @@ jobs:
22
steps:
23
- uses: actions/checkout@v4
24
25
+ - name: Install pnpm
26
+ run: corepack enable
27
+
28
- name: setup node
29
uses: actions/setup-node@v4
30
with:
31
node-version: lts/*
32
+ cache: 'pnpm'
33
34
- name: install Rust stable
35
uses: dtolnay/rust-toolchain@stable
@@ -42,7 +46,7 @@ jobs:
42
46
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
43
47
44
48
- name: install frontend dependencies
45
- run: pnpm install # change this to npm, pnpm or bun depending on which one you use.
49
+ run: pnpm install --no-frozen-lockfile # change this to npm, pnpm or bun depending on which one you use.
50
51
- uses: tauri-apps/tauri-action@v0
52
env:
0 commit comments