Skip to content

Commit

Permalink
fix(actions): fix release action by updating the ubuntu packages
Browse files Browse the repository at this point in the history
  • Loading branch information
danvergara committed Dec 14, 2022
1 parent a820c94 commit badad0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
check-latest: true
cache: true
- name: Install cross-compiler for linux/arm64
run: sudo apt-get -y install gcc-aarch64-linux-gnu
run: |
sudo apt update
sudo apt-get -y install gcc-aarch64-linux-gnu
- name: Build
uses: goreleaser/goreleaser-action@v3
with:
Expand Down

0 comments on commit badad0e

Please sign in to comment.