Steam deploy folders, not zips

This commit is contained in:
Yair Morgenstern 2022-09-15 14:18:51 +03:00
parent 8606a662c7
commit d42e495f78

View File

@ -163,6 +163,13 @@ jobs:
mv desktop/build/libs/Unciv.jar deploy/Unciv.jar mv desktop/build/libs/Unciv.jar deploy/Unciv.jar
# Unzip zips for steam deployment
mkdir steam
unzip deploy/Unciv-Windows64.zip -d steam/Unciv-Windows64
unzip deploy/Unciv-Linux64.zip -d steam/Unciv-Linux64
- name: Steam deploy - name: Steam deploy
continue-on-error: true continue-on-error: true
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
@ -176,8 +183,8 @@ jobs:
appId: 2118950 appId: 2118950
buildDescription: ${{steps.tag.outputs.tag}} buildDescription: ${{steps.tag.outputs.tag}}
rootPath: deploy rootPath: deploy
depot1Path: Unciv-Windows64.zip depot1Path: Unciv-Windows64
depot2Path: Unciv-Linux64.zip depot2Path: Unciv-Linux64
releaseBranch: release releaseBranch: release
## Server ## Server