Skip to content

Commit

Permalink
Remove libwebkit2gtk-4.0-dev
Browse files Browse the repository at this point in the history
The latest GH Action Ubuntu runner has been updated to v24 and this dependency causes the action to fail.
  • Loading branch information
Sammy-T committed Dec 28, 2024
1 parent 52a5956 commit 963f0a1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Install Linux dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev
run: sudo apt-get update && sudo apt install libgtk-3-dev libwebkit2gtk-4.1-dev

- name: Set up Node.js
uses: actions/[email protected]
Expand Down Expand Up @@ -63,11 +63,12 @@ jobs:
run: mkdir -p release

- name: Build Wails app
if: matrix.os != 'ubuntu-latest'
run: wails build

- name: Build Wails app (Linux-alt)
- name: Build Wails app (Linux)
if: matrix.os == 'ubuntu-latest'
run: wails build -tags webkit2_41 -o ${{ steps.filename.outputs.prop }}-linux-alt
run: wails build -tags webkit2_41

- name: Zip release file
uses: vimtor/[email protected]
Expand Down

0 comments on commit 963f0a1

Please sign in to comment.