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 -