diff options
Diffstat (limited to '.github')
-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 |