mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 23:55:40 +00:00
GitHub Actions: Add AppImage zsync files to rolling release
This commit is contained in:
parent
a0f81b1e34
commit
c6c1d3952f
25
.github/workflows/rolling-release.yml
vendored
25
.github/workflows/rolling-release.yml
vendored
|
@ -67,12 +67,24 @@ jobs:
|
||||||
name: "linux-x64-appimage-sdl"
|
name: "linux-x64-appimage-sdl"
|
||||||
path: "build/duckstation-sdl-x64.AppImage"
|
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
|
- name: Upload Qt AppImage
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: "linux-x64-appimage-qt"
|
name: "linux-x64-appimage-qt"
|
||||||
path: "build/duckstation-qt-x64.AppImage"
|
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:
|
create-release:
|
||||||
needs: [windows-build, linux-build]
|
needs: [windows-build, linux-build]
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
|
@ -87,11 +99,21 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: "linux-x64-appimage-sdl"
|
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
|
- name: Download Qt AppImage Artifact
|
||||||
uses: actions/download-artifact@v1
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: "linux-x64-appimage-qt"
|
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
|
- name: Create release
|
||||||
uses: "marvinpinto/action-automatic-releases@latest"
|
uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
with:
|
with:
|
||||||
|
@ -101,5 +123,6 @@ jobs:
|
||||||
files: |
|
files: |
|
||||||
windows-x64/duckstation-windows-x64-release.7z
|
windows-x64/duckstation-windows-x64-release.7z
|
||||||
linux-x64-appimage-sdl/duckstation-sdl-x64.AppImage
|
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/duckstation-qt-x64.AppImage
|
||||||
|
linux-x64-appimage-qt-zsync/duckstation-qt-x64.AppImage.zsync
|
||||||
|
|
Loading…
Reference in a new issue