Skip to content

Commit

Permalink
OH GOD OH MAN
Browse files Browse the repository at this point in the history
  • Loading branch information
Streq committed May 26, 2022
1 parent 8966683 commit b587b10
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ jobs:
./godot --path ./project.godot --export "HTML5" ./exports/html/index.html
- name: Zip Exports
run: |
for file in exports/*; do zip -r "${ITCH_PROJECT_NAME}_${file%.*}_${{ steps.versioning.outputs.version }}.zip" $file; rm -rf $file; done
cd exports
for file in *; do zip -r "${ITCH_PROJECT_NAME}_${file%.*}_${{ steps.versioning.outputs.version }}.zip" $file; rm -rf $file; done
cd ..
- name: Publish Export Artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit b587b10

Please sign in to comment.