From 3a0d85174fde81e7e706180637d5eaf6c505ed76 Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Thu, 19 Feb 2026 17:44:24 +0000 Subject: [PATCH] feat: add native project generation for Android and iOS in MobileApp workflow --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8667df618..f1b51c0ce1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2309,6 +2309,9 @@ jobs: - name: Install dependencies run: cd MobileApp && npm install + - name: Generate native Android project + run: cd MobileApp && npx expo prebuild --platform android --no-install + - name: Decode Android keystore run: | echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 --decode > /tmp/release.keystore @@ -2351,6 +2354,9 @@ jobs: - name: Install dependencies run: cd MobileApp && npm install + - name: Generate native iOS project + run: cd MobileApp && npx expo prebuild --platform ios --no-install + - name: Install CocoaPods dependencies run: cd MobileApp/ios && pod install