fix: Change build mode from 'dev' to 'debug' for mobile client and staff apps

This commit is contained in:
Achintha Isuru
2026-02-20 01:33:15 -05:00
parent 6c9db5e643
commit 2162b5493e

View File

@@ -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 "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"