Skip to content

Commit b97c7ed

Browse files
alanleedevfacebook-github-bot
authored andcommitted
Fix iOS RNTester CI: update prebuilt pods alongside hermes-engine
Summary: The test-ios-rntester CI action only runs pod update hermes-engine, but React-Core-prebuilt and ReactNativeDependencies also derive their version from package.json. When a version bump lands on the stable branch before bump-podfile-lock.yml regenerates the Podfile.lock, CocoaPods fails with a version mismatch error. Fix: add React-Core-prebuilt and ReactNativeDependencies to the pod update command in .github/actions/test-ios-rntester/action.yml. This is safe to run unconditionally — when versions haven't changed, pod update for those pods is a no-op. Changelog: [Internal] --- Differential Revision: D98799372
1 parent 6747cd2 commit b97c7ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/test-ios-rntester/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ runs:
7575
cd packages/rn-tester
7676
7777
bundle install
78-
bundle exec pod update hermes-engine --no-repo-update
78+
bundle exec pod update hermes-engine React-Core-prebuilt ReactNativeDependencies --no-repo-update
7979
- name: Build RNTester
8080
shell: bash
8181
run: |

0 commit comments

Comments
 (0)