Skip to content

Commit bd77dd8

Browse files
authored
chore: adding workaround to fix release-plz failure (#14)
1 parent c106993 commit bd77dd8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/release-plz.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
- name: Install Rust toolchain
2727
uses: dtolnay/rust-toolchain@stable
2828
- uses: Swatinem/rust-cache@v2
29+
- name: Install system dependencies
30+
run: |
31+
sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev
2932
- name: Run release-plz
3033
uses: release-plz/action@v0.5
3134
with:
@@ -53,6 +56,9 @@ jobs:
5356
- name: Install Rust toolchain
5457
uses: dtolnay/rust-toolchain@stable
5558
- uses: Swatinem/rust-cache@v2
59+
- name: Install system dependencies
60+
run: |
61+
sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev
5662
- name: Run release-plz
5763
uses: release-plz/action@v0.5
5864
with:

release-plz.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[workspace]
22
git_only = true
3-
publish_no_verify = true
43
semver_check = false
54
release_always = false

0 commit comments

Comments
 (0)