Skip to content

Commit 3d65cb4

Browse files
committed
CICD: Fix the linux Build.
Update the package cache before trying to install packages from it. Signed-off-by: Michael Keller <[email protected]>
1 parent 192d48e commit 3d65cb4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Install dependencies
24-
run: sudo apt-get install libbluetooth-dev libusb-1.0-0-dev
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install libbluetooth-dev libusb-1.0-0-dev
2527
- run: autoreconf --install --force
2628
- run: ./configure --prefix=/usr
2729
- run: make

0 commit comments

Comments
 (0)