Skip to content

Commit 6f3ae2c

Browse files
committed
fix: ios sample app build on v5
1 parent 1b1b77a commit 6f3ae2c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
build_and_deploy_ios_testflight_qa:
1616
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/V5' }}
17-
runs-on: [macos-14]
17+
runs-on: [macos-15]
1818
steps:
1919
- name: Connect Bot
2020
uses: webfactory/[email protected]
@@ -33,7 +33,9 @@ jobs:
3333
${{ runner.os }}-pods-
3434
- name: iOS Pods setup
3535
working-directory: examples/SampleApp/ios
36-
run: bundle exec pod install
36+
run: |
37+
pod update hermes-engine --no-repo-update
38+
bundle exec pod install
3739
- name: Build and release Testflight QA
3840
working-directory: examples/SampleApp
3941
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V5' }};

0 commit comments

Comments
 (0)