Skip to content

Commit

Permalink
Prevent the error exit being swallowed by pod install
Browse files Browse the repository at this point in the history
  • Loading branch information
stalgiag committed Jan 6, 2025
1 parent dcb64a4 commit 3221705
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,10 @@ jobs:
shell: bash
run: |
yarn expo prebuild --platform ios --clean
yarn expo run:ios --configuration Debug --no-build-cache
exit $?
cd ios
if ! pod install; then
echo "Pod install failed"
exit 1
fi
cd ..
yarn expo run:ios --configuration Debug --no-build-cache

0 comments on commit 3221705

Please sign in to comment.