From 592d0cb21f6d02c450af6e86f88d00966bb2a968 Mon Sep 17 00:00:00 2001 From: Simeon Radivoev Date: Sun, 1 Mar 2026 20:26:57 +0200 Subject: [PATCH] build: added windows build zipping --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8528521..3310181 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,6 +77,15 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v5 + - name: Archive Windows Release + if: matrix.os == 'ubuntu-latest' + uses: thedoctor0/zip-release@0.7.5 + with: + type: "zip" + directory: ${{ github.workspace }} + filename: "Gameflow-Windows.zip" + path: "canary-build-Windows" + - name: Publish Release uses: ncipollo/release-action@v1 with: @@ -87,4 +96,4 @@ jobs: omitBodyDuringUpdate: true replacesArtifacts: true token: ${{ secrets.GITHUB_TOKEN }} - artifacts: "${{ github.workspace }}/canary-build-*/*.AppImage,${{ github.workspace }}/canary-build-*/*.zip" + artifacts: "${{ github.workspace }}/canary-build-*/*.AppImage,${{ github.workspace }}/Gameflow-Windows.zip"