Skip to content

Commit badad0e

Browse files
committed
fix(actions): fix release action by updating the ubuntu packages
1 parent a820c94 commit badad0e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
check-latest: true
2222
cache: true
2323
- name: Install cross-compiler for linux/arm64
24-
run: sudo apt-get -y install gcc-aarch64-linux-gnu
24+
run: |
25+
sudo apt update
26+
sudo apt-get -y install gcc-aarch64-linux-gnu
2527
- name: Build
2628
uses: goreleaser/goreleaser-action@v3
2729
with:

0 commit comments

Comments
 (0)