Skip to content

Commit

Permalink
chore: add pods
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed Aug 9, 2024
1 parent 5cc07ce commit bd5f473
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/expo-devclient-build-check-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
build_ios:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: macos-14
runs-on: ${{ matrix.platform == 'iOS' && 'macos-14' || 'ubuntu-latest' }}
strategy:
matrix:
react-native-architecture: ['Paper', 'Fabric']
Expand Down Expand Up @@ -58,6 +58,10 @@ jobs:
- name: Expo prebuild
working-directory: ${{ env.APP_NAME }}
run: npx expo prebuild
- name: Install pods
if: ${{ matrix.platform == 'iOS' }}
working-directory: ${{ env.APP_NAME }}/ios
run: bundle install && bundle exec pod install
- name: Build app (iOS)
working-directory: ${{ env.APP_NAME }}
if: ${{ matrix.platform == 'iOS' }}
Expand Down

0 comments on commit bd5f473

Please sign in to comment.