Skip to content

Commit

Permalink
fix(app): Tweak webkit dep version for CI builds
Browse files Browse the repository at this point in the history
Fix AppImage building by pinning webkit dep version.
  • Loading branch information
petejohanson committed Nov 18, 2024
1 parent 5bf73f9 commit 4bccfc6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tauri-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- platform: "macos-latest" # for Intel based macs.
name: macos-intel
args: "--target x86_64-apple-darwin"
- platform: "ubuntu-22.04"
- platform: "ubuntu-24.04"
name: linux
args: ""
- platform: "windows-latest"
Expand All @@ -35,7 +35,13 @@ jobs:
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev libudev-dev patchelf
sudo apt-get install -y libappindicator3-dev librsvg2-dev libudev-dev patchelf \
libwebkit2gtk-4.1-0=2.44.0-2 \
libwebkit2gtk-4.1-dev=2.44.0-2 \
libjavascriptcoregtk-4.1-0=2.44.0-2 \
libjavascriptcoregtk-4.1-dev=2.44.0-2 \
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
gir1.2-webkit2-4.1=2.44.0-2
- name: Get release
id: get_release
Expand Down

0 comments on commit 4bccfc6

Please sign in to comment.