Skip to content

Commit

Permalink
re-order ios build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
noumantahir committed Jan 13, 2025
1 parent 7a169d7 commit e23adec
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.0'

- name: Setup Cocoapods
uses: maxim-lobanov/setup-cocoapods@v1
with:
Expand All @@ -29,19 +28,15 @@ jobs:
env:
GOOGLE_JSON: ${{ secrets.GOOGLE_PLIST }}
run: echo $GOOGLE_PLIST | base64 --decode > ./ios/GoogleService-Info.plist
- name: Install npm dependency
run: yarn install
- name: Cache cocoapods
uses: actions/cache@v3
with:
path: /ios/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Install pod dependency
run: |
cd ios
bundle exec pod install
- name: Install npm dependency
run: yarn install
- name: Build iOS JS Bundle
run: |
yarn run package-ios
Expand Down

0 comments on commit e23adec

Please sign in to comment.