diff options
author | Nikias Bassen | 2021-09-21 03:24:23 +0200 |
---|---|---|
committer | Nikias Bassen | 2021-09-21 03:24:23 +0200 |
commit | bd2e44633abb2fd5d0ecee2be540438edc5f6eb2 (patch) | |
tree | 7a540e475676997bc6b3701fc98c9a24c46631b5 /.github/workflows | |
parent | 3a10a315a59ff73fe2edfb3dca897ab688407b71 (diff) | |
download | libimobiledevice-bd2e44633abb2fd5d0ecee2be540438edc5f6eb2.tar.gz libimobiledevice-bd2e44633abb2fd5d0ecee2be540438edc5f6eb2.tar.bz2 |
[github-actions] Add an explicit apt-get update before attempting to install packages on ubuntu
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5c9c0c..2612e32 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,7 @@ jobs: steps: - name: install dependencies run: | + sudo apt-get update sudo apt-get install cython - name: prepare environment run: | |