Skip to content

Commit

Permalink
actions for building and release: apt update -> apt-get -y update
Browse files Browse the repository at this point in the history
  • Loading branch information
francoismichel committed Dec 12, 2023
1 parent bc552b3 commit a65172c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: sudo apt-get -y install gcc-aarch64-linux-gnu
-
name: Install lcrypt for arm64
run: sudo dpkg --add-architecture arm64 && sudo apt update && sudo apt-get -y install libcrypt-dev:arm64
run: sudo dpkg --add-architecture arm64 && sudo apt-get -y update && sudo apt-get -y install libcrypt-dev:arm64
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install toolchain for compiling ARM
run: sudo apt-get -y install gcc-aarch64-linux-gnu
- name: Install lcrypt for arm64
run: sudo dpkg --add-architecture arm64 && sudo apt update && sudo apt-get -y install libcrypt-dev:arm64
run: sudo dpkg --add-architecture arm64 && sudo apt-get -y update && sudo apt-get -y install libcrypt-dev:arm64
- name: Setup Go
uses: actions/setup-go@v4
with:
Expand Down

0 comments on commit a65172c

Please sign in to comment.