Update Codemagic scripts and add M4 demo guide

Normalize spacing in Codemagic job names (add space after emoji) and remove duplicated android_signing environment variable mappings for staff keystores across dev, staging, and prod workflows in codemagic.yaml. Add docs/MILESTONES/M4/demos/m4-client-note.md with the M4 demo guide (deliverables, test accounts, core improvements, and key deliverables).
This commit is contained in:
Achintha Isuru
2026-03-04 14:27:20 -05:00
parent a56d8e5fd6
commit da3bbb7056
2 changed files with 71 additions and 17 deletions

View File

@@ -4,7 +4,7 @@
# Reusable script for building the Flutter app
client-app-android-apk-build-script: &client-app-android-apk-build-script
name: 👷🤖 Build Client App APK (Android)
name: 👷 🤖 Build Client App APK (Android)
script: |
dart pub global activate melos
export PATH="$PATH":"$HOME/.pub-cache/bin"
@@ -12,7 +12,7 @@ client-app-android-apk-build-script: &client-app-android-apk-build-script
make mobile-client-build PLATFORM=apk MODE=release
client-app-ios-build-script: &client-app-ios-build-script
name: 👷🍎 Build Client App (iOS)
name: 👷 🍎 Build Client App (iOS)
script: |
dart pub global activate melos
export PATH="$PATH":"$HOME/.pub-cache/bin"
@@ -20,7 +20,7 @@ client-app-ios-build-script: &client-app-ios-build-script
make mobile-client-build PLATFORM=ios MODE=release
staff-app-android-apk-build-script: &staff-app-android-apk-build-script
name: 👷🤖 Build Staff App APK (Android)
name: 👷 🤖 Build Staff App APK (Android)
script: |
dart pub global activate melos
export PATH="$PATH":"$HOME/.pub-cache/bin"
@@ -28,7 +28,7 @@ staff-app-android-apk-build-script: &staff-app-android-apk-build-script
make mobile-staff-build PLATFORM=apk MODE=release
staff-app-ios-build-script: &staff-app-ios-build-script
name: 👷🍎 Build Staff App (iOS)
name: 👷 🍎 Build Staff App (iOS)
script: |
dart pub global activate melos
export PATH="$PATH":"$HOME/.pub-cache/bin"
@@ -37,7 +37,7 @@ staff-app-ios-build-script: &staff-app-ios-build-script
# Reusable script for distributing Android to Firebase
distribute-android-script: &distribute-android-script
name: 🚛🤖 Distribute Android to Firebase App Distribution
name: 🚛 🤖 Distribute Android to Firebase App Distribution
script: |
# Distribute Android APK
# Note: Using wildcards to catch app-release.apk
@@ -270,10 +270,6 @@ workflows:
- staff_app_dev_credentials
android_signing:
- keystore: KROW_STAFF_DEV
keystore_environment_variable: CM_KEYSTORE_PATH_STAFF
keystore_password_environment_variable: CM_KEYSTORE_PASSWORD_STAFF
key_alias_environment_variable: CM_KEY_ALIAS_STAFF
key_password_environment_variable: CM_KEY_PASSWORD_STAFF
vars:
ENV: dev
scripts:
@@ -291,10 +287,6 @@ workflows:
- staff_app_staging_credentials
android_signing:
- keystore: KROW_STAFF_STAGING
keystore_environment_variable: CM_KEYSTORE_PATH_STAFF
keystore_password_environment_variable: CM_KEYSTORE_PASSWORD_STAFF
key_alias_environment_variable: CM_KEY_ALIAS_STAFF
key_password_environment_variable: CM_KEY_PASSWORD_STAFF
vars:
ENV: staging
scripts:
@@ -312,10 +304,6 @@ workflows:
- staff_app_prod_credentials
android_signing:
- keystore: KROW_STAFF_PROD
keystore_environment_variable: CM_KEYSTORE_PATH_STAFF
keystore_password_environment_variable: CM_KEYSTORE_PASSWORD_STAFF
key_alias_environment_variable: CM_KEY_ALIAS_STAFF
key_password_environment_variable: CM_KEY_PASSWORD_STAFF
vars:
ENV: prod
scripts: