diff --git a/.github/workflows/ios-build.yml b/.github/workflows/ios-build.yml index 7413e5c..69a1758 100644 --- a/.github/workflows/ios-build.yml +++ b/.github/workflows/ios-build.yml @@ -30,5 +30,10 @@ jobs: shell: bash run: | yarn expo prebuild --platform ios --clean - yarn expo run:ios --configuration Debug --no-build-cache - exit $? \ No newline at end of file + cd ios + if ! pod install; then + echo "Pod install failed" + exit 1 + fi + cd .. + yarn expo run:ios --configuration Debug --no-build-cache \ No newline at end of file