change zip build to overwrite old build and not remove both
Some checks failed
Build project / Build for (StandaloneLinux64, 6000.0.37f1) (push) Successful in 27m48s
Build project / Build for (StandaloneWindows64, 6000.0.37f1) (push) Successful in 21m23s
Build project / Publish itch.io (StandaloneLinux64) (push) Failing after 2s
Build project / Publish itch.io (StandaloneWindows64) (push) Failing after 2s

This commit is contained in:
EthanPisani 2025-02-20 01:44:40 -05:00
parent 4f73118700
commit 743f48e650

View File

@ -65,7 +65,7 @@ jobs:
- name: Zip build artifacts - name: Zip build artifacts
run: | run: |
mkdir -p /tmp/zipped_builds mkdir -p /tmp/zipped_builds
rm -f /tmp/zipped_builds/*.zip rm -rf /tmp/zipped_builds/${{ matrix.targetPlatform }}.zip 2> /dev/null
if [ "${{ matrix.targetPlatform }}" == "StandaloneLinux64" ]; then if [ "${{ matrix.targetPlatform }}" == "StandaloneLinux64" ]; then
cd build/StandaloneLinux64 cd build/StandaloneLinux64
zip -r /tmp/zipped_builds/build_StandaloneLinux64.zip . \ zip -r /tmp/zipped_builds/build_StandaloneLinux64.zip . \