diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-10-25 21:49:15 -0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-25 21:49:41 -0400 |
commit | 2aac5510893343c2154a3af7390c965c96a37797 (patch) | |
tree | 4b360ad560b00970c3f36f2c0bb9b617ed45ea2f /.github/workflows | |
parent | de1e4391100419e73d737f3b3f5d53210e7dc4aa (diff) | |
download | subsurface-2aac5510893343c2154a3af7390c965c96a37797.tar.gz |
GitHub Actions: add apt-get update before installing curl
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/android.yml | 1 | ||||
-rw-r--r-- | .github/workflows/linux-trusty-5.12.yml | 1 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index d5b539c51..70a5f1575 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -42,6 +42,7 @@ jobs: - name: copy to transfer.sh if: github.event_name == 'push' run: | + apt-get update apt-get install -y curl curl --upload-file Subsurface-mobile.apk "https://transfer.sh/Subsurface-mobile.apk curl --upload-file Subsurface-mobile.arm64.apk "https://transfer.sh/Subsurface-mobile.arm64.apk diff --git a/.github/workflows/linux-trusty-5.12.yml b/.github/workflows/linux-trusty-5.12.yml index 0c9e5697b..3b10a51d5 100644 --- a/.github/workflows/linux-trusty-5.12.yml +++ b/.github/workflows/linux-trusty-5.12.yml @@ -35,5 +35,6 @@ jobs: - name: copy to transfer.sh if: github.event_name == 'push' run: | + apt-get update apt-get install -y curl curl --upload-file Subsurface.AppImage "https://transfer.sh/Subsurface.AppImage diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8fa3dd6af..490008a8b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -56,6 +56,7 @@ jobs: - name: copy to transfer.sh if: github.event_name == 'push' run: | + apt-get update apt-get install -y curl curl --upload-file subsurface-installer.exe "https://transfer.sh/subsurface-installer.exe curl --upload-file subsurface.exe "https://transfer.sh/subsurface.exe |