12 Commits

Author SHA1 Message Date
ad1147df70 tars
All checks were successful
Gymkhana exports / All exports (push) Successful in 1m15s
2025-10-11 03:29:59 +02:00
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
3539140752 build
All checks were successful
Gymkhana exports / All exports (push) Successful in 52s
2025-10-11 03:04:12 +02:00
d21e5a01c3 web
All checks were successful
Gymkhana exports / All exports (push) Successful in 54s
2025-10-11 02:57:50 +02:00
a56ac03c30 build
Some checks failed
Gymkhana exports / All exports (push) Failing after 1m11s
2025-10-11 02:54:48 +02:00
9c6136a435 wf
All checks were successful
Gymkhana exports / All exports (push) Successful in 30s
2025-10-11 02:45:16 +02:00
10caeb0092 tars
All checks were successful
Gymkhana exports / All exports (push) Successful in 29s
2025-10-11 02:42:35 +02:00
3c706c0566 build
All checks were successful
Gymkhana exports / All exports (push) Successful in 43s
2025-10-11 02:32:02 +02:00
0129deed0e build
All checks were successful
Gymkhana exports / All exports (push) Successful in 1m2s
2025-10-11 02:24:03 +02:00
1efb43de51 push
All checks were successful
Gymkhana exports / All exports (push) Successful in 23m40s
2025-10-11 01:56:29 +02:00
09027bbd1c build
Some checks failed
Gymkhana exports / All exports (push) Has been cancelled
2025-10-11 01:55:50 +02:00
3 changed files with 23 additions and 17 deletions

View File

@@ -1,9 +1,12 @@
name: Gymkhana exports name: Gymkhana exports
run-name: ${{ gitea.actor }} is building Gymkhanikas 🚀 run-name: ${{ gitea.actor }} is building Gymkhanikas 🚀
on: [push] on:
push:
branches:
- 'release/*'
- '!main'
env: env:
GODOT_VERSION: 4.4.1 GODOT_VERSION: 4.5
EXPORT_NAME: LasGymkhanikasDeUli EXPORT_NAME: LasGymkhanikasDeUli
PROJECT_PATH: . PROJECT_PATH: .
@@ -25,9 +28,8 @@ jobs:
run: | run: |
./build.sh ./build.sh
- name: Upload Artifact - name: Upload Artifact
uses: uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
files: |- files: |
build/**/*.tar.gz build/**/*.appimage
build/**/*.appimage.x86_64" build/**/*.tar.gz
build/**/*.appimage.arm_64

View File

@@ -6,4 +6,4 @@
- Pico - Pico
- Miette - Miette
- Niko - Niko
- Urtzi - Urtzi

View File

@@ -10,6 +10,8 @@ echo "Release builds"
EXPORT_NAME="LasGymkhanikasDeUli" EXPORT_NAME="LasGymkhanikasDeUli"
EXPORT_DIR="build" EXPORT_DIR="build"
BASE_RELATIVE_DIR=../../../
mkdir -p $EXPORT_DIR mkdir -p $EXPORT_DIR
RELEASE_EXPORT_DIR=$EXPORT_DIR/release RELEASE_EXPORT_DIR=$EXPORT_DIR/release
@@ -23,17 +25,18 @@ sed -i "s/debug_enabled\=true/savegame_enabled\=false/" project.godot
echo "Building $AMD64..." echo "Building $AMD64..."
mkdir -p $RELEASE_EXPORT_DIR/$AMD64 mkdir -p $RELEASE_EXPORT_DIR/$AMD64
godot --headless --verbose --export-release "Linux" "$RELEASE_EXPORT_DIR/$AMD64/$EXPORT_NAME.appimage.x86_64" godot --headless --verbose --export-release "Linux" "$RELEASE_EXPORT_DIR/$AMD64/$EXPORT_NAME.x86_64.appimage"
echo "Building $ARM64..." echo "Building $ARM64..."
mkdir -p $RELEASE_EXPORT_DIR/$ARM64 mkdir -p $RELEASE_EXPORT_DIR/$ARM64
godot --headless --verbose --export-release "LinuxARM" "$RELEASE_EXPORT_DIR/$ARM64/$EXPORT_NAME.appimage.arm_64" godot --headless --verbose --export-release "LinuxARM" "$RELEASE_EXPORT_DIR/$ARM64/$EXPORT_NAME.arm_64.appimage"
echo "Building $WEB..." echo "Building $WEB..."
mkdir -p $RELEASE_EXPORT_DIR/$WEB mkdir -p $RELEASE_EXPORT_DIR/$WEB
godot --headless --verbose --export-release "Web" "$RELEASE_EXPORT_DIR/$WEB/index.html" godot --headless --verbose --export-release "Web" "$RELEASE_EXPORT_DIR/$WEB/index.html"
cd $DEBUG_EXPORT_DIR/$WEB cd $RELEASE_EXPORT_DIR
tar cfz ../$WEB.tar.gz tar cfz $WEB.tar.gz web
cd ../../
echo "Debug builds..." echo "Debug builds..."
@@ -48,16 +51,17 @@ sed -i "s/debug_enabled\=false/debug_enabled\=true/" project.godot
echo "Building $AMD64..." echo "Building $AMD64..."
mkdir -p $DEBUG_EXPORT_DIR/$AMD64 mkdir -p $DEBUG_EXPORT_DIR/$AMD64
godot --headless --verbose --export-debug "Linux" "$DEBUG_EXPORT_DIR/$AMD64/$EXPORT_NAME.appimage.x86_64" godot --headless --verbose --export-debug "Linux" "$DEBUG_EXPORT_DIR/$AMD64/$EXPORT_NAME.x86_64.appimage"
echo "Building $ARM64..." echo "Building $ARM64..."
mkdir -p $DEBUG_EXPORT_DIR/$ARM64 mkdir -p $DEBUG_EXPORT_DIR/$ARM64
godot --headless --verbose --export-debug "LinuxARM" "$DEBUG_EXPORT_DIR/$ARM64/$EXPORT_NAME.appimage.arm_64" godot --headless --verbose --export-debug "LinuxARM" "$DEBUG_EXPORT_DIR/$ARM64/$EXPORT_NAME.arm_64.appimage"
echo "Building $WEB..." echo "Building $WEB..."
mkdir -p $DEBUG_EXPORT_DIR/$WEB mkdir -p $DEBUG_EXPORT_DIR/$WEB
godot --headless --verbose --export-debug "Web" "$DEBUG_EXPORT_DIR/$WEB/index.html" godot --headless --verbose --export-debug "Web" "$DEBUG_EXPORT_DIR/$WEB/index.html"
cd $DEBUG_EXPORT_DIR/$WEB cd $DEBUG_EXPORT_DIR
tar cfz ../$WEB-debug.tar.gz tar cfz $WEB-debug.tar.gz web
echo "Finish!🎉" echo "Finish!🎉"