Update .forgejo/workflows/godot-html5.yml
Some checks failed
Build and Deploy Godot HTML5 / build (push) Has been cancelled
Test Runner / test (push) Successful in 2s

This commit is contained in:
Tanner Van Teeffelen 2026-05-09 01:33:10 -04:00
parent 05b1421413
commit e28f30986b

View file

@ -40,6 +40,19 @@ jobs:
- name: Verify Godot - name: Verify Godot
run: godot --version run: godot --version
- name: Install export templates
run: |
VERSION=4.2
mkdir -p ~/.local/share/godot/export_templates/${VERSION}.stable
wget -O templates.tpz \
https://github.com/godotengine/godot/releases/download/${VERSION}-stable/Godot_v${VERSION}-stable_export_templates.tpz
unzip templates.tpz -d templates_tmp
cp -r templates_tmp/templates/* ~/.local/share/godot/export_templates/${VERSION}.stable/
# --------------------------- # ---------------------------
# 5. Build HTML5 export # 5. Build HTML5 export
# --------------------------- # ---------------------------