1 parent 8696137 commit 6772079Copy full SHA for 6772079
1 file changed
fastlane/Fastfile
@@ -11,6 +11,14 @@ platform :ios do
11
end
12
13
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
21
22
api_key = asc_api_key
23
24
setup_ci if ENV["CI"]
@@ -46,6 +54,10 @@ platform :ios do
46
54
)
47
55
48
56
57
+ lane :testflight_build_only do
58
+ build_for_store
59
60
49
61
lane :release do
50
62
api_key = build_for_store
51
63
0 commit comments