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 e7689ec
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 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 @@ -32,10 +32,16 @@ jobs:
- uses: actions/checkout@v4

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
if: matrix.platform == 'ubuntu-24.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 e7689ec

Please sign in to comment.