Skip to content

Commit

Permalink
Merge pull request #19 from bithyve/main
Browse files Browse the repository at this point in the history
Fix ubuntu dependencies build
  • Loading branch information
ben-kaufman authored Sep 9, 2024
2 parents 097d746 + 64de375 commit b762078
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/dev-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "publish"
name: "dev-release"

on:
push:
Expand Down Expand Up @@ -44,9 +44,7 @@ jobs:
if: matrix.platform == 'ubuntu-20.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: import windows certificate
if: matrix.platform == 'windows-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pgp-sign-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: PGP sign release

on:
workflow_run:
workflows: ["publish"]
workflows: ["release"]
types:
- completed

Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "publish"
name: "release"

on:
push:
Expand Down Expand Up @@ -44,9 +44,7 @@ jobs:
if: matrix.platform == 'ubuntu-20.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: import windows certificate
if: matrix.platform == 'windows-latest'
Expand Down

0 comments on commit b762078

Please sign in to comment.