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

Commit 6adfafc

Browse files
committed
Update release.yml
1 parent cf944bd commit 6adfafc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- os: windows-2022
1616
target: x86_64-pc-windows-msvc
1717
- os: ubuntu-22.04
18-
target: x86_64-unknown-linux-musl
18+
target: x86_64-unknown-linux-gnu
1919
- os: macos-12
2020
target: x86_64-apple-darwin
2121
- os: macos-12
@@ -31,11 +31,11 @@ jobs:
3131

3232
- name: Install target
3333
run: rustup target add ${{ matrix.target }}
34-
if: contains(fromJSON('["x86_64-unknown-linux-musl", "aarch64-apple-darwin"]'), matrix.target)
34+
if: contains(fromJSON('["x86_64-unknown-linux-gnu", "aarch64-apple-darwin"]'), matrix.target)
3535

3636
- name: Install musl-tools and libxdo-dev
37-
if: matrix.target == 'x86_64-unknown-linux-musl'
38-
run: sudo apt-get update && sudo apt-get install musl-tools xdotool
37+
if: matrix.target == 'x86_64-unknown-linux-gnu'
38+
run: sudo apt-get update && sudo apt-get install musl-tools libxdo-dev
3939

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

0 commit comments

Comments
 (0)