diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index cca5b2311..493765fbd 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -66,17 +66,17 @@ jobs: run: | yarn lerna run build - - name: Configure Bundler - working-directory: ./packages/legacy/app - run: | - bundle config set frozen 'true' - - name: Install iOS dependencies # if: steps.pod-cache.outputs.cache-hit != 'true' || steps.npm-cache.outputs.cache-hit != 'true' working-directory: ./packages/legacy/app run: | - bundle install && \ + gem install cocoapods -v 1.14 && \ + cd ios && \ + rm -rf Pods && \ + rm -f Podfile.lock && \ pod update hermes-engine --no-repo-update && \ + pod install && \ + cd .. && \ yarn run ios:setup && \ git status && \ git diff ios/Podfile.lock