Skip to content

Commit

Permalink
Fix github actions installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronRP committed Sep 25, 2024
1 parent 8982543 commit 10d4fd6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
override: true

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y \
gcc-aarch64-linux-gnu \
libc6-arm64-cross \
libc6-dev-arm64-cross \
binutils-aarch64-linux-gnu
run: |
sudo apt-get update && sudo apt-get install -y \
gcc-aarch64-linux-gnu \
libc6-arm64-cross \
libc6-dev-arm64-cross \
binutils-aarch64-linux-gnu
- name: Add target for cross-compilation
run: rustup target add aarch64-unknown-linux-musl
Expand Down

0 comments on commit 10d4fd6

Please sign in to comment.