Refactor Android build workflow to separate preparation and build steps

This commit is contained in:
Kirill
2026-08-20 20:24:30 +03:00
parent a446b7cb41
commit 8cb01d77de
+10 -1
View File
@@ -16,9 +16,18 @@ jobs:
- name: Godot version
run: godot --version
- name: Prepare Godot
run: |
rm -rf .godot
mkdir -p build
- name: Build APK
run: |
mkdir -p build
godot \
--headless \
--path . \
--editor \
--quit
godot \
--headless \