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"