Add apt-get update before installing system packages in CI

The CI was failing because the runner's package index was stale,
causing a 404 when fetching libasound2-dev (a dependency of
portaudio19-dev). Running apt-get update first refreshes the index.
This commit is contained in:
Mark Backman
2026-02-19 07:01:07 -07:00
parent a0a7b3101d
commit 92c380ee77
2 changed files with 2 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ jobs:
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get install -y portaudio19-dev
- name: Install dependencies