diff --git a/.github/workflows/mobile-ci.yml b/.github/workflows/mobile-ci.yml index 4d53bdd5..3230c8c6 100644 --- a/.github/workflows/mobile-ci.yml +++ b/.github/workflows/mobile-ci.yml @@ -89,13 +89,13 @@ jobs: - name: 🔨 Run compilation check run: | echo "🏗️ Building client app for Android (dev mode)..." - make mobile-client-build PLATFORM=apk MODE=dev 2>&1 | tee client_build.txt || true + make mobile-client-build PLATFORM=apk MODE=debug 2>&1 | tee client_build.txt || true echo "" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" echo "🏗️ Building staff app for Android (dev mode)..." - make mobile-staff-build PLATFORM=apk MODE=dev 2>&1 | tee staff_build.txt || true + make mobile-staff-build PLATFORM=apk MODE=debug 2>&1 | tee staff_build.txt || true echo "" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"