Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit 74fc26a

Browse files
committed
Update release.yml
1 parent 94b0034 commit 74fc26a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/release.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,16 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v3
2828

29-
- name: Install dependencies (Ubuntu)
30-
if: matrix.os == 'ubuntu-22.04'
31-
run: sudo apt-get update && sudo apt-get install -y libxdo-dev
32-
3329
- name: Setup Rust Toolchain
3430
uses: actions-rust-lang/setup-rust-toolchain@v1
3531

3632
- name: Install target
3733
run: rustup target add ${{ matrix.target }}
3834
if: contains(fromJSON('["x86_64-unknown-linux-musl", "aarch64-apple-darwin"]'), matrix.target)
3935

40-
- name: Install musl-tools
36+
- name: Install musl-tools and libxdo-dev
4137
if: matrix.target == 'x86_64-unknown-linux-musl'
42-
run: sudo apt-get update && sudo apt-get install musl-tools
38+
run: sudo apt-get update && sudo apt-get install musl-tools libxdo-dev
4339

4440
- name: Build
4541
run: cargo build --verbose --locked -F bin --release --target ${{ matrix.target }}

0 commit comments

Comments
 (0)