From 1822b50399f8c910bb42d63d3fc8f5b0b49be382 Mon Sep 17 00:00:00 2001 From: Olof Pettersson Date: Thu, 4 Dec 2025 09:07:28 +0100 Subject: [PATCH] Fix auth --- .gitea/workflows/build-game.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-game.yaml b/.gitea/workflows/build-game.yaml index 265a112..bba3fae 100644 --- a/.gitea/workflows/build-game.yaml +++ b/.gitea/workflows/build-game.yaml @@ -33,13 +33,11 @@ jobs: # Download Linux Editor (The Builder) echo "Downloading Editor..." - wget --header="Authorization: token $TOKEN" \ - "$REGISTRY_URL/godot-editor-linux/$ENGINE_HASH/godot-editor-linux.zip" + wget "$REGISTRY_URL/godot-editor-linux/$ENGINE_HASH/godot-editor-linux.zip" # Download Templates (The Payload) echo "Downloading Templates..." - wget --header="Authorization: token $TOKEN" \ - "$REGISTRY_URL/godot-templates/$ENGINE_HASH/templates.tpz" + wget "$REGISTRY_URL/godot-templates/$ENGINE_HASH/templates.tpz" echo "--- 2. INSTALLING ---"