From c6c1d3952f914cada42a32f0dc123cb806c6cbc3 Mon Sep 17 00:00:00 2001 From: Albert Liu <45282415+ggrtk@users.noreply.github.com> Date: Sat, 23 May 2020 02:57:50 -0700 Subject: [PATCH] GitHub Actions: Add AppImage zsync files to rolling release --- .github/workflows/rolling-release.yml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rolling-release.yml b/.github/workflows/rolling-release.yml index 35a097941..fb72c201e 100644 --- a/.github/workflows/rolling-release.yml +++ b/.github/workflows/rolling-release.yml @@ -67,12 +67,24 @@ jobs: name: "linux-x64-appimage-sdl" path: "build/duckstation-sdl-x64.AppImage" + - name: Upload SDL AppImage zsync + uses: actions/upload-artifact@v1 + with: + name: "linux-x64-appimage-sdl-zsync" + path: "build/duckstation-sdl-x64.AppImage.zsync" + - name: Upload Qt AppImage uses: actions/upload-artifact@v1 with: name: "linux-x64-appimage-qt" path: "build/duckstation-qt-x64.AppImage" + - name: Upload Qt AppImage zsync + uses: actions/upload-artifact@v1 + with: + name: "linux-x64-appimage-qt-zsync" + path: "build/duckstation-qt-x64.AppImage.zsync" + create-release: needs: [windows-build, linux-build] runs-on: "ubuntu-latest" @@ -87,11 +99,21 @@ jobs: with: name: "linux-x64-appimage-sdl" + - name: Download SDL AppImage zsync Artifact + uses: actions/download-artifact@v1 + with: + name: "linux-x64-appimage-sdl-zsync" + - name: Download Qt AppImage Artifact uses: actions/download-artifact@v1 with: name: "linux-x64-appimage-qt" + - name: Download Qt AppImage zsync Artifact + uses: actions/download-artifact@v1 + with: + name: "linux-x64-appimage-qt-zsync" + - name: Create release uses: "marvinpinto/action-automatic-releases@latest" with: @@ -101,5 +123,6 @@ jobs: files: | windows-x64/duckstation-windows-x64-release.7z linux-x64-appimage-sdl/duckstation-sdl-x64.AppImage + linux-x64-appimage-sdl-zsync/duckstation-sdl-x64.AppImage.zsync linux-x64-appimage-qt/duckstation-qt-x64.AppImage - + linux-x64-appimage-qt-zsync/duckstation-qt-x64.AppImage.zsync