Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/mobile-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ jobs:

- name: Install dependencies
run: npm ci
- name: Prebuild native Android project
run: npx expo prebuild --platform android --no-install

- name: Cache Gradle
uses: actions/cache@v4
Expand All @@ -124,7 +126,6 @@ jobs:
name: android-debug-apk
path: mobile/android/app/build/outputs/apk/debug/app-debug.apk
retention-days: 7

# ── iOS build ────────────────────────────────────────────────────────────────
build-ios:
name: iOS Debug Build
Expand All @@ -144,6 +145,8 @@ jobs:

- name: Install dependencies
run: npm ci
- name: Prebuild native iOS project
run: npx expo prebuild --platform ios --no-install

- name: Install CocoaPods
run: |
Expand Down
Loading