Skip to content

Commit

Permalink
Removed Zip Checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Walter-Hulsebos committed Sep 25, 2023
1 parent 3801264 commit 810a676
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,20 +101,20 @@ jobs:

- name: Upload Build
uses: actions/upload-artifact@v3
if: github.event.action == 'published' || contains(github.event.inputs.workflow_mode, matrix.targetPlatform) || (contains(github.event.inputs.workflow_mode, 'Steam') && matrix.targetPlatform == 'StandaloneWindows64')
#if: github.event.action == 'published' || contains(github.event.inputs.workflow_mode, matrix.targetPlatform) || contains(github.event.inputs.workflow_mode, 'Steam')
with:
name: build-${{ matrix.targetPlatform }}
path: build/${{ matrix.targetPlatform }}

- name: Zip Build
uses: montudor/action-zip@v1
if: github.event.action == 'published' && matrix.targetPlatform == 'StandaloneWindows64'
#if: github.event.action == 'published' && matrix.targetPlatform == 'StandaloneWindows64'
with:
args: zip -qq -r build/build-${{ matrix.targetPlatform }}.zip build/${{ matrix.targetPlatform }}

- name: Upload Zip to GitHub Release
uses: svenstaro/upload-release-action@v2
if: github.event.action == 'published' && matrix.targetPlatform == 'StandaloneWindows64'
#if: github.event.action == 'published' && matrix.targetPlatform == 'StandaloneWindows64'
with:
asset_name: build-${{ matrix.targetPlatform }}.zip
file: build/build-${{ matrix.targetPlatform }}.zip
Expand Down

0 comments on commit 810a676

Please sign in to comment.