diff options
author | Nikias Bassen | 2021-09-21 03:25:43 +0200 |
---|---|---|
committer | Nikias Bassen | 2021-09-21 03:25:43 +0200 |
commit | f0ca69d9b1f488e4eca7e1095190ededc76f3507 (patch) | |
tree | d5fe1b9e74871e048b7439d47675797400db56c0 | |
parent | b1c7b1622ab61bc6cc35ad2e2ee13e9a8986ee5f (diff) | |
download | usbmuxd-f0ca69d9b1f488e4eca7e1095190ededc76f3507.tar.gz usbmuxd-f0ca69d9b1f488e4eca7e1095190ededc76f3507.tar.bz2 |
[github-actions] Add an explicit apt-get update before attempting to install packages on ubuntu
-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 1b07d87..5628879 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 libusb-1.0-0-dev - name: prepare environment run: | |