Skip to content

Commit

Permalink
fix: add missing dep
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 25, 2024
1 parent 8aaa90b commit 694e27a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ jobs:
- name: Install build deps
if: ${{ matrix.build.target == 'x86_64-unknown-linux-musl'}}
run: sudo apt-get install -y musl-tools
run: |
sudo apt-get install -y musl-tools
wget https://musl.cc/x86_64-linux-musl-cross.tgz
tar xvfz x86_64-linux-musl-cross.tgz
echo "$(readlink -f x86_64-linux-musl-cross)/bin" >> "$GITHUB_PATH"
- name: Install build deps
if: ${{ matrix.build.target == 'arm-unknown-linux-gnueabi'}}
Expand Down

0 comments on commit 694e27a

Please sign in to comment.