Enhance Android CI workflow with verbose export and build checks
Android / android (push) Failing after 19s

This commit is contained in:
Kirill
2026-08-19 22:16:05 +03:00
parent 201284f3c2
commit 15a4a2e953
+27 -1
View File
@@ -50,14 +50,40 @@ jobs:
ls -lh /root/.local/share/godot/export_templates/4.6.stable/
test -f /root/.local/share/godot/export_templates/4.6.stable/android_release.apk
# - name: Godot export check
# run: |
# godot \
# --headless \
# --path . \
# --export-release "Android" \
# /tmp/test.apk
- name: Godot export check
run: |
mkdir -p build
godot \
--headless \
--verbose \
--path . \
--export-release "Android" \
/tmp/test.apk
build/app.apk
- name: Check build
if: always()
run: |
echo "=== BUILD ==="
ls -lah build 2>/dev/null || true
echo "=== ADB ==="
adb version 2>&1 || true
# ---
- name: Build APK
run: |
mkdir -p build