chore(ci): only tag release + patch, no testing, cp from /cache
Test Suite / Unit Tests (GUT) (push) Successful in 46s
Release / Export Windows (push) Failing after 45s
Release / Export Linux (push) Failing after 16s
Release / Create Release (push) Has been skipped
Upload PCK to Gitea Release / upload (push) Failing after 47s
Test Suite / Security Scan (push) Failing after 13m23s
Test Suite / Code Style Check (push) Failing after 13m41s
Test Suite / Integration Tests (push) Failing after 14m26s
Build and Upload Binaries / build (push) Failing after 17m44s

This commit is contained in:
2026-07-03 13:25:27 +08:00
parent 340ba13a48
commit 03028413ca
2 changed files with 61 additions and 69 deletions
+17 -4
View File
@@ -46,16 +46,29 @@ jobs:
- name: Setup Godot
run: |
wget -q https://github.com/godotengine/godot-builds/releases/download/4.6-stable/Godot_v4.6-stable_linux.x86_64.zip
unzip -q Godot_v4.6-stable_linux.x86_64.zip
if [ -f /cache/Godot_v4.6-stable_linux.x86_64.zip ]; then
cp -a /cache/Godot_v4.6-stable_linux.x86_64.zip godot.zip
else
wget -q https://github.com/godotengine/godot-builds/releases/download/4.6-stable/Godot_v4.6-stable_linux.x86_64.zip -O godot.zip
fi
unzip -q godot.zip
mv Godot_v4.6-stable_linux.x86_64 /usr/local/bin/godot
chmod +x /usr/local/bin/godot
- name: Install export templates
run: |
mkdir -v -p ~/.local/share/godot/export_templates/4.6.stable
wget -q https://github.com/godotengine/godot-builds/releases/download/4.6-stable/Godot_v4.6-stable_export_templates.tpz
unzip -q Godot_v4.6-stable_export_templates.tpz -d ~/.local/share/godot/export_templates/4.6.stable
if [ -f /cache/Godot_v4.6-stable_export_templates.tpz ]; then
cp -a /cache/Godot_v4.6-stable_export_templates.tpz /tmp/godot-templates.tpz
else
wget -nv https://github.com/godotengine/godot-builds/releases/download/4.6-stable/Godot_v4.6-stable_export_templates.tpz -O /tmp/godot-templates.tpz
fi
unzip -o -q /tmp/godot-templates.tpz -d /tmp/godot-templates
if [ -d /tmp/godot-templates/templates ]; then
cp -a /tmp/godot-templates/templates/* ~/.local/share/godot/export_templates/4.6.stable/
else
cp -a /tmp/godot-templates/* ~/.local/share/godot/export_templates/4.6.stable/
fi
- name: Run patch build script
env: