Skip to content

Commit 27f01a2

Browse files
author
Varg
committed
Use fixed package name w/o any version
1 parent 9d122da commit 27f01a2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/release_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
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:

build_games_package.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
set -e
44

5-
export GAMEKIT_VER="${1:-latest}"
6-
75
mkdir -p dist
86

97
# Validation
@@ -17,7 +15,7 @@ REL_BUILD_DIR=./build/package
1715
echo "Copying contents"
1816
cp -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

2321
mv $REL_BUILD_DIR/*.zip ./dist/

0 commit comments

Comments
 (0)