File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11XCODE_PROJ = "DevLog.xcodeproj"
22APP_IDENTIFIER = "opfic.DevLog"
33TARGET_NAME = "DevLog"
4- TESTFLIGHT_BUILD_OUTPUT_DIRECTORY = "fastlane/ testflight_build"
4+ TESTFLIGHT_BUILD_OUTPUT_DIRECTORY = File . expand_path ( " testflight_build", __dir__ )
55TESTFLIGHT_IPA_OUTPUT_PATH = File . join ( TESTFLIGHT_BUILD_OUTPUT_DIRECTORY , "#{ TARGET_NAME } .ipa" )
66
77default_platform ( :ios )
@@ -121,7 +121,7 @@ platform :ios do
121121 api_key = asc_api_key
122122 # lane_context는 같은 fastlane 실행 내에서만 유지되므로, 별도 CI step에서는 고정 ipa 경로를 사용한다.
123123 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?
124+ ipa_output_path = TESTFLIGHT_IPA_OUTPUT_PATH if ipa_output_path . empty?
125125
126126 UI . user_error! ( "Missing built ipa at #{ ipa_output_path } " ) if !File . exist? ( ipa_output_path )
127127
You can’t perform that action at this time.
0 commit comments