From a42ebcb82eb3763a04b402eb01f40165832c22f9 Mon Sep 17 00:00:00 2001 From: bionickatana Date: Mon, 22 Jun 2026 12:21:56 -0600 Subject: [PATCH] Godot auto build --- .gitea/workflows/build.yaml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c5f09e2..7dce98f 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -43,7 +43,7 @@ jobs: echo "📥 Cache Miss. Downloading Godot Engine ($VERSION_URL)..." curl -L "https://github.com/godotengine/godot/releases/download/${VERSION_URL}/Godot_v${VERSION_URL}_linux.x86_64.zip" -o godot.zip unzip godot.zip - mv "Godot_v${VERSION_URL}_linux.x86_64" .godot-cache-storage/godot + move "Godot_v${VERSION_URL}_linux.x86_64" .godot-cache-storage/godot || mv "Godot_v${VERSION_URL}_linux.x86_64" .godot-cache-storage/godot chmod +x .godot-cache-storage/godot echo "📥 Downloading Export Templates ($VERSION_URL)..." @@ -76,15 +76,11 @@ jobs: - name: debug run: | - ls -la "${{ gitea.workspace }}/build/linux" ls -la build/linux - - # Step 7: Upload artifacts using action version safety features compatible with Gitea + # Step 6: Upload artifacts using Gitea-compatible v3 action - name: Upload Linux Build Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: linux-build path: build/linux/ - if-no-files-found: error -