From 6b080525b24ed1d57de7605ee9faef9ed80af774 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 26 Oct 2019 22:28:30 -0400 Subject: GitHub Actions: switch back to the GitHub artifacts for PRs transfer.sh has suddenly started to time out. And for the rather occasional need of having a binary to test from a PR, this should be good enough. Signed-off-by: Dirk Hohndel --- .github/workflows/windows.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to '.github/workflows/windows.yml') diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8e0557a43..b8a3030de 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -53,13 +53,15 @@ jobs: BIN4: ./smtk2ssrf-installer.exe BIN5: ./smtk2ssrf.exe - - name: copy to transfer.sh + - name: prepare PR artifacts if: github.event_name == 'pull_request' 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" - curl --upload-file subsurface.exe.debug "https://transfer.sh/subsurface.exe.debug" - curl --upload-file smtk2ssrf-installer.exe "https://transfer.sh/smtk2ssrf-installer.exe" - curl --upload-file smtk2ssrf.exe "https://transfer.sh/smtk2ssrf.exe" + mkdir -p Windows-artifacts + mv ./subsurface-installer.exe ./subsurface.exe ./subsurface.exe.debug ./smtk2ssrf-installer.exe ./smtk2ssrf.exe Windows-artifacts + + - name: PR artifacts + if: github.event_name == 'pull_request' + uses: actions/upload-artifact@master + with: + name: Windows-artifacts + path: Windows-artifacts -- cgit v1.2.3-70-g09d2