Skip to content

Commit

Permalink
Fix apt-get install in publish workflow (#305)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7e1c8b9)
  • Loading branch information
leighmcculloch committed Dec 8, 2022
1 parent 0351de7 commit dc87a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- run: rustup update
- run: rustup target add ${{ matrix.target }}
- if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get -y install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
run: sudo apt-get update && sudo apt-get -y install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
- name: Package
run: cargo package --no-verify
- name: Build
Expand Down

0 comments on commit dc87a29

Please sign in to comment.