diff options
| author | Álvaro Fernández Rojas | 2025-11-03 06:38:52 +0000 |
|---|---|---|
| committer | Álvaro Fernández Rojas | 2025-11-03 07:09:17 +0000 |
| commit | c1e2eee6c5e35438daf13fa72b04778ff07a00c7 (patch) | |
| tree | 75deea4e5fcf3d0ca04674d5036e0352d0d91ac7 | |
| parent | 2e46a7405f26ec131918c821c30ac0b26fdb22f0 (diff) | |
| download | uci-c1e2eee6c5e35438daf13fa72b04778ff07a00c7.tar.gz | |
github: fix CI apt dependencies
We need to run 'apt update' before installing the APT packages.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
| -rw-r--r-- | .github/workflows/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d62a44e..4b10fcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,7 @@ jobs: - name: Install dependencies run: | + sudo apt update sudo apt install ${{ matrix.packages }} - name: Prepare build |