From fe5ac7914ab83c98dc22c24a8e1d2b4b27374bce Mon Sep 17 00:00:00 2001 From: Oier Bravo Urtasun Date: Sat, 11 Oct 2025 03:14:51 +0200 Subject: [PATCH] files --- .gitea/workflows/release.yml | 4 +++- build.sh | 7 +++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index f0f257bf..53a58778 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -31,4 +31,6 @@ jobs: uses: akkuman/gitea-release-action@v1 with: files: |- - "**/*.tar.gz" \ No newline at end of file + "build/release/web.tar.gz" + "build/debug/web-debug.tar.gz" + "build/**/*.appimage" \ No newline at end of file diff --git a/build.sh b/build.sh index 68a71256..94fc8003 100755 --- a/build.sh +++ b/build.sh @@ -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!🎉" \ No newline at end of file