2 Commits

Author SHA1 Message Date
7b704ed80b files
All checks were successful
Gymkhana exports / All exports (push) Successful in 1m27s
2025-10-11 03:20:36 +02:00
fe5ac7914a files
All checks were successful
Gymkhana exports / All exports (push) Successful in 1m19s
2025-10-11 03:14:51 +02:00
2 changed files with 6 additions and 6 deletions

View File

@@ -30,5 +30,6 @@ jobs:
- name: Upload Artifact
uses: akkuman/gitea-release-action@v1
with:
files: |-
"**/*.tar.gz"
files: |
build/**/*.appimage
build/**/*.tar.gz

View File

@@ -41,9 +41,8 @@ echo "Building $WEB..."
mkdir -p $RELEASE_EXPORT_DIR/$WEB
godot --headless --verbose --export-release "Web" "$RELEASE_EXPORT_DIR/$WEB/index.html"
cd $RELEASE_EXPORT_DIR
tar cfz ../$WEB.tar.gz web
cd $BASE_RELATIVE_DIR
tar cfz $WEB.tar.gz web
cd ../../
echo "Debug builds..."
DEBUG_EXPORT_DIR=$EXPORT_DIR/debug
@@ -75,6 +74,6 @@ echo "Building $WEB..."
mkdir -p $DEBUG_EXPORT_DIR/$WEB
godot --headless --verbose --export-debug "Web" "$DEBUG_EXPORT_DIR/$WEB/index.html"
cd $DEBUG_EXPORT_DIR
tar cfz ../$WEB-debug.tar.gz web
tar cfz $WEB-debug.tar.gz web
echo "Finish!🎉"