File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ permissions:
1010 contents : read
1111
1212jobs :
13- beta :
13+ testflight :
1414 runs-on : macos-latest
1515 timeout-minutes : 45
1616 env :
4545 printf '%s' "$ASC_KEY_CONTENT" | base64 -D > "$ASC_KEY_PATH"
4646
4747 - name : Upload to TestFlight
48- run : bundle exec fastlane beta
48+ run : bundle exec fastlane testflight
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ vendor/bundle/
2727
2828# Fastlane
2929.fastlane /
30+ fastlane /README.md
3031fastlane /report.xml
3132fastlane /test_output /
3233fastlane /logs /
Original file line number Diff line number Diff line change @@ -11,6 +11,14 @@ platform :ios do
1111 end
1212
1313 private_lane :build_for_store do
14+ if ENV [ "FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT" ] . to_s . strip . empty?
15+ ENV [ "FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT" ] = "30"
16+ end
17+
18+ if ENV [ "FASTLANE_XCODEBUILD_SETTINGS_RETRIES" ] . to_s . strip . empty?
19+ ENV [ "FASTLANE_XCODEBUILD_SETTINGS_RETRIES" ] = "5"
20+ end
21+
1422 api_key = asc_api_key
1523
1624 setup_ci if ENV [ "CI" ]
@@ -37,7 +45,7 @@ platform :ios do
3745 next api_key
3846 end
3947
40- lane :beta do
48+ lane :testflight do
4149 api_key = build_for_store
4250
4351 upload_to_testflight (
@@ -46,6 +54,10 @@ platform :ios do
4654 )
4755 end
4856
57+ lane :testflight_build_only do
58+ build_for_store
59+ end
60+
4961 lane :release do
5062 api_key = build_for_store
5163
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments