We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b30a547 commit 1eb4a44Copy full SHA for 1eb4a44
1 file changed
.github/workflows/build-android.yml
@@ -74,10 +74,15 @@ jobs:
74
working-directory: examples/AppExampleFabric/android
75
run: ./gradlew assemble${{ matrix.variant == 'debug' && 'Debug' || 'Release' }} --build-cache
76
77
- - name: Build Android app (ExpoExample)
+ - name: Prebuild Expo app
78
if: matrix.app == 'ExpoExample'
79
working-directory: examples/ExpoExample
80
- run: bun run android --variant ${{ matrix.variant }}
+ 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
86
87
- name: Upload .apk to GitHub
88
uses: actions/upload-artifact@v4
0 commit comments