Add wayland dependency in workflow

This commit is contained in:
Tobias Berger 2022-09-21 13:48:01 +02:00
parent 652622efd5
commit 676a78e90c
Signed by: toby
GPG key ID: 2D05EFAB764D6A88

View file

@ -22,6 +22,9 @@ jobs:
profile: minimal profile: minimal
toolchain: nightly toolchain: nightly
override: true 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 - name: Build binary
run: | run: |
@ -88,6 +91,7 @@ jobs:
create-tag: create-tag:
name: "Create tag" name: "Create tag"
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: [compile]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1 - uses: rickstaa/action-create-tag@v1