Skip to content

Commit 971087d

Browse files
authored
fix: sample app crash on start (#3128)
* fix: broken and failing testflight build * fix: build number * fix: revert gh actions changes
1 parent f0e806f commit 971087d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434
- name: iOS Pods setup
3535
working-directory: examples/SampleApp/ios
3636
run: |
37-
pod update hermes-engine --no-repo-update
37+
rm -rf Pods
38+
rm -f Podfile.lock
39+
rm -rf build
40+
rm -rf ~/Library/Developer/Xcode/DerivedData
3841
bundle exec pod install
3942
- name: Build and release Testflight QA
4043
working-directory: examples/SampleApp

examples/SampleApp/fastlane/Fastfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ lane :deploy_to_testflight_qa do |options|
3434
)
3535

3636
current_build_number = app_store_build_number(
37-
api_key: appstore_api_key,
38-
live: false,
39-
app_identifier: bundle_id
40-
)
37+
api_key: appstore_api_key,
38+
live: false,
39+
app_identifier: bundle_id
40+
)
4141

4242
increment_build_number(
4343
build_number: current_build_number + 1,

0 commit comments

Comments
 (0)