Skip to content

Commit 1be4926

Browse files
authored
Update Fastfile
1 parent 07ce85c commit 1be4926

File tree

1 file changed

+35
-11
lines changed

1 file changed

+35
-11
lines changed

fastlane/Fastfile

Lines changed: 35 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ platform :ios do
4949

5050
desc "빌드 및 TestFlight 업로드만 진행"
5151
lane :release_only do
52-
build_app(
53-
project: "BioLog.xcodeproj",
54-
scheme: "BioLog",
55-
clean: true,
56-
silent: true,
57-
skip_package_pkg: true,
58-
export_method: "app-store",
59-
output_directory: "build",
60-
output_name: "BioLog.ipa",
61-
skip_codesigning: true
52+
# build_app(
53+
# project: "BioLog.xcodeproj",
54+
# scheme: "BioLog",
55+
# clean: true,
56+
# silent: true,
57+
# skip_package_pkg: true,
58+
# export_method: "app-store",
59+
# output_directory: "build",
60+
# output_name: "BioLog.ipa",
61+
# skip_codesigning: true
6262

6363
# include_bitcode: false,
6464
# export_options: {
@@ -70,7 +70,31 @@ platform :ios do
7070
# "com.Wook.BioLog" => "match AppStore com.Wook.BioLog"
7171
# }
7272
# }
73-
)
73+
# )
74+
75+
build_app(
76+
project: "BioLog.xcodeproj",
77+
scheme: "BioLog",
78+
clean: true,
79+
silent: true,
80+
skip_package_pkg: true,
81+
export_method: "app-store",
82+
export_options: {
83+
signingStyle: "manual",
84+
provisioningProfiles: {
85+
"com.Wook.BioLog" => "match AppStore com.Wook.BioLog"
86+
},
87+
teamID: "D49753ZB3N", # 명시적으로 지정
88+
compileBitcode: false,
89+
uploadSymbols: true,
90+
uploadBitcode: false
91+
},
92+
export_xcargs: [
93+
"CODE_SIGN_IDENTITY='Apple Distribution: Hyun Wook Lee (D49753ZB3N)'",
94+
"DEVELOPMENT_TEAM=D49753ZB3N",
95+
"PROVISIONING_PROFILE_SPECIFIER='match AppStore com.Wook.BioLog'"
96+
].join(" ")
97+
)
7498

7599
api_key = app_store_connect_api_key(
76100
key_id: ENV["FASTLANE_APPLE_API_KEY_KEY_ID"],

0 commit comments

Comments
 (0)