Skip to content

Commit 1eb4a44

Browse files
committed
chore(ci): fix expo builds
1 parent b30a547 commit 1eb4a44

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build-android.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,15 @@ jobs:
7474
working-directory: examples/AppExampleFabric/android
7575
run: ./gradlew assemble${{ matrix.variant == 'debug' && 'Debug' || 'Release' }} --build-cache
7676

77-
- name: Build Android app (ExpoExample)
77+
- name: Prebuild Expo app
7878
if: matrix.app == 'ExpoExample'
7979
working-directory: examples/ExpoExample
80-
run: bun run android --variant ${{ matrix.variant }}
80+
run: bunx expo prebuild --platform android
81+
82+
- name: Build Android app (ExpoExample)
83+
if: matrix.app == 'ExpoExample'
84+
working-directory: examples/ExpoExample/android
85+
run: ./gradlew assemble${{ matrix.variant == 'debug' && 'Debug' || 'Release' }} --build-cache
8186

8287
- name: Upload .apk to GitHub
8388
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)