From 420874dbf2a6c6d7ba7bdf0b36d7e5bea03dd3a7 Mon Sep 17 00:00:00 2001 From: bionickatana Date: Mon, 22 Jun 2026 11:49:31 -0600 Subject: [PATCH] Godot auto build --- .gitea/workflows/build.yaml | 14 ++++++------- .gitea/workflows/cache_test.yaml | 36 -------------------------------- 2 files changed, 7 insertions(+), 43 deletions(-) delete mode 100644 .gitea/workflows/cache_test.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a1e0d5b..87a8858 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -74,11 +74,11 @@ jobs: mkdir -p build/linux ./godot --headless --export-release "Linux" build/linux/godot_number_factory.x86_64 - # Step 6: Upload artifacts using action version safety features compatible with Gitea - - name: Upload Linux Build Artifact - uses: actions/upload-artifact@v4 - with: - name: linux-build - path: build/linux/ - if-no-files-found: error + ## Step 6: Upload artifacts using action version safety features compatible with Gitea + #- name: Upload Linux Build Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: linux-build + # path: build/linux/ + # if-no-files-found: error diff --git a/.gitea/workflows/cache_test.yaml b/.gitea/workflows/cache_test.yaml deleted file mode 100644 index 3807400..0000000 --- a/.gitea/workflows/cache_test.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: CI Built-in Cache Test -on: [push] - -jobs: - test-cache: - runs-on: ubuntu-latest - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - # 1. Ask Gitea to look for an existing cache match - - name: Cache Mock Engine - id: engine-cache - uses: actions/cache@v4 - with: - path: ./mock_downloads # The folder we want to preserve - key: mock-engine-cache-v1 # The unique identifier for this cache - - # 2. This step only runs if there was a CACHE MISS - - name: Simulate Asset Download (On Cache Miss) - if: steps.engine-cache.outputs.cache-hit != 'true' - run: | - echo "📥 CACHE MISS! Creating the folder and simulating a file download..." - mkdir -p ./mock_downloads - echo "Mock Godot Engine Data v4.7" > ./mock_downloads/dummy_engine.txt - - # 3. This runs ALWAYS to verify the file is where it should be - - name: Verify Workspace Output - run: | - echo "🔍 Verifying file presence..." - if [ -f "./mock_downloads/dummy_engine.txt" ]; then - echo "✅ File found! Content: $(cat ./mock_downloads/dummy_engine.txt)" - else - echo "❌ File not found!" - exit 1 - fi