File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1717 run : echo "version=$(date +'%Y_%m_%d')" >> $GITHUB_OUTPUT
1818 - name : Build Win32 release
1919 run : ./build_gamekit_windows.sh "${{ steps.version.outputs.version }}"
20- - name : Prepare a package for qSpider
21- run : ./build_games_package.sh qspider
20+ - name : Prepare a package
21+ run : ./build_games_package.sh
2222 - name : Publish release
2323 uses : softprops/action-gh-release@v2
2424 with :
Original file line number Diff line number Diff line change 22
33set -e
44
5- export GAMEKIT_VER=" ${1:- latest} "
6-
75mkdir -p dist
86
97# Validation
@@ -17,7 +15,7 @@ REL_BUILD_DIR=./build/package
1715echo " Copying contents"
1816cp -r $REL_CONTENTS_DIR /. $REL_BUILD_DIR
1917
20- echo " Compressing the package $GAMEKIT_VER "
21- (cd $REL_BUILD_DIR ; zip -7 -r ./games_package- $GAMEKIT_VER .zip ./)
18+ echo " Compressing the package"
19+ (cd $REL_BUILD_DIR ; zip -7 -r ./games_package.zip ./)
2220
2321mv $REL_BUILD_DIR /* .zip ./dist/
You can’t perform that action at this time.
0 commit comments