Skip to content

Commit 3e5f4e1

Browse files
authored
Update release.yml
1 parent b4939a1 commit 3e5f4e1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55
branches:
66
- main
77

8-
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
9-
108
jobs:
119
publish-tauri:
1210
permissions:
@@ -44,11 +42,14 @@ jobs:
4442
run: |
4543
sudo apt-get update
4644
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
47-
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
48-
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
45+
46+
# Install pnpm for all platforms
47+
- name: install pnpm
48+
run: |
49+
npm install -g pnpm
4950
5051
- name: install frontend dependencies
51-
run: pnpm install # change this to npm, pnpm or bun depending on which one you use.
52+
run: pnpm install
5253

5354
- uses: tauri-apps/tauri-action@v0
5455
env:

0 commit comments

Comments
 (0)