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 af1c77a commit 95e1b2d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ jobs:
toolchain: stable
override: true

- name: Enable universe and multiverse repositories
run: |
sudo add-apt-repository universe
sudo add-apt-repository multiverse
sudo dpkg --add-architecture arm64 # Add support for cross-compiling architecture
sudo apt-get update
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y \
gcc-aarch64-linux-gnu \
Expand Down

0 comments on commit 95e1b2d

Please sign in to comment.