Skip to content

Commit

Permalink
fix: specify target when cargo build
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Oct 10, 2024
1 parent 5b523be commit 5c7ca79
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ jobs:
toolchain: stable
targets: ${{ matrix.info.target }}

- name: Install musl-tools
if: contains(matrix.info.target, 'musl') == true
run: |
sudo apt-get update
sudo apt-get install -y musl-tools
- name: Build Hayabusa binary
run: |
cargo run --release -- update-rules -q
Expand Down

0 comments on commit 5c7ca79

Please sign in to comment.