From 676a78e90cbd66d56e64e0d6a2038f0940d93180 Mon Sep 17 00:00:00 2001 From: Tobias Berger Date: Wed, 21 Sep 2022 13:48:01 +0200 Subject: [PATCH] Add wayland dependency in workflow --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 169e51b..cbbb998 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,6 +22,9 @@ jobs: profile: minimal toolchain: nightly override: true + - name: Install wayland dependency on linux + if: ${{ matrix.os == 'ubuntu-22.04' }} + run: sudo apt-get install -y libwayland-dev - name: Build binary run: | @@ -88,6 +91,7 @@ jobs: create-tag: name: "Create tag" runs-on: ubuntu-22.04 + needs: [compile] steps: - uses: actions/checkout@v3 - uses: rickstaa/action-create-tag@v1