Skip to content

Commit

Permalink
github-actions: fix uninstallable package by doing an apt update first
Browse files Browse the repository at this point in the history
  • Loading branch information
anisse committed Jul 16, 2024
1 parent 1539a0c commit 5370a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Prepare
if: runner.os == 'Linux'
run: sudo apt install -y libudev-dev libasound2-dev
run: sudo apt update && sudo apt install -y libudev-dev libasound2-dev

- name: Install rust
id: toolchain
Expand Down

0 comments on commit 5370a0c

Please sign in to comment.