diff options
| author | Álvaro Fernández Rojas | 2025-11-03 06:38:52 +0000 |
|---|---|---|
| committer | Álvaro Fernández Rojas | 2025-11-03 07:08:29 +0000 |
| commit | e357be611cd9deb280c61bbdf331f5a85e75a485 (patch) | |
| tree | 2c6e7b5ba046e66e8e21fbff23a51881ed35c84d | |
| parent | 9caf555f00e23c0e467c77ac86ae6cefd4e76053 (diff) | |
| download | libubox-e357be611cd9deb280c61bbdf331f5a85e75a485.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 208ad2d..21a0d4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,7 @@ jobs: - name: Install dependencies run: | + sudo apt update sudo apt install ${{ matrix.packages }} - name: Prepare build |