Skip to content

Commit

Permalink
Update release-export.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
smileynet authored Oct 22, 2023
1 parent 62c9187 commit f076887
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
path: builds/windows-${{ github.ref_name }}
retention-days: 1
- name: Zip Folder
run: zip -r itch.zip builds/windows
if: ${{ env.ITCH_IO=='true' }}
run: zip -r itch.zip builds/windows-${{ github.ref_name }}
- name: Deploy to itch.io
if: ${{ env.ITCH_IO=='true' }}
uses: josephbmanley/butler-publish-itchio-action@master
Expand Down Expand Up @@ -68,6 +69,7 @@ jobs:
path: builds/linux-${{ github.ref_name }}
retention-days: 1
- name: Zip Folder
if: ${{ env.ITCH_IO=='true' }}
run: zip -r itch.zip builds/linux-${{ github.ref_name }}
- name: Deploy to itch.io
if: ${{ env.ITCH_IO=='true' }}
Expand Down Expand Up @@ -112,6 +114,7 @@ jobs:
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: builds/web-${{ github.ref_name }} # The folder the action should deploy.
- name: Zip Folder
if: ${{ env.ITCH_IO=='true' }}
run: zip -r itch.zip builds/web-${{ github.ref_name }}
- name: Deploy to itch.io
if: ${{ env.ITCH_IO=='true' }}
Expand Down Expand Up @@ -147,6 +150,7 @@ jobs:
path: builds/mac-${{ github.ref_name }}
retention-days: 1
- name: Zip Folder
if: ${{ env.ITCH_IO=='true' }}
run: zip -r itch.zip builds/mac-${{ github.ref_name }}
- name: Deploy to itch.io
if: ${{ env.ITCH_IO=='true' }}
Expand Down

0 comments on commit f076887

Please sign in to comment.