Skip to content

Commit

Permalink
Try to fix APT dependencies (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Apr 22, 2024
1 parent 56ce993 commit 0757a60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-apphost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
# Linux GUI support needs libgtk-3-dev to be installed
- target:
name: linux_x64
apt_deps: libgtk-3-dev
ui: gui
apt_deps: libgtk-3-dev

runs-on: ${{ matrix.target.os }}
container: ${{ matrix.target.container }}
Expand All @@ -56,8 +56,8 @@ jobs:
echo "CARGO_HOME=$HOME/.cargo" >> "$GITHUB_ENV"
- name: Install dependencies
if: ${{ matrix.target.apt_deps }}
run: sudo apt-get install -y ${{ matrix.target.apt_deps }}
if: ${{ matrix.apt_deps }}
run: sudo apt-get install -y ${{ matrix.apt_deps }}

- name: Cache toolchain / dependencies
uses: actions/cache@v4
Expand Down

0 comments on commit 0757a60

Please sign in to comment.