We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459b8a0 commit b8f9dc8Copy full SHA for b8f9dc8
1 file changed
fastlane/Fastfile
@@ -119,7 +119,9 @@ platform :ios do
119
120
lane :upload_testflight_build do
121
api_key = asc_api_key
122
+ # lane_context는 같은 fastlane 실행 내에서만 유지되므로, 별도 CI step에서는 고정 ipa 경로를 사용한다.
123
ipa_output_path = lane_context[SharedValues::IPA_OUTPUT_PATH].to_s
124
+ ipa_output_path = File.expand_path(TESTFLIGHT_IPA_OUTPUT_PATH, Dir.pwd) if ipa_output_path.empty?
125
126
UI.user_error!("Missing built ipa at #{ipa_output_path}") if !File.exist?(ipa_output_path)
127
0 commit comments