We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40db9cd commit 7f90c7fCopy full SHA for 7f90c7f
1 file changed
.github/workflows/release.yml
@@ -21,10 +21,13 @@ jobs:
21
os: ubuntu-24.04
22
steps:
23
- uses: actions/checkout@v6
24
+ - name: Install musl toolchain
25
+ if: contains(matrix.target, 'musl')
26
+ run: sudo apt-get update && sudo apt-get install -y musl-tools
27
- name: Add target
28
run: rustup target add ${{ matrix.target }}
29
- name: Build
- run: cargo build --release --target ${{ matrix.target }}
30
+ run: cargo build --release --workspace --target ${{ matrix.target }}
31
- name: Package binaries
32
run: |
33
mkdir -p dist
0 commit comments