Skip to content

Commit b502179

Browse files
committed
[hotfix] fastlane 빌드 프로비저닝 지정 추가
1 parent 3ee5523 commit b502179

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

fastlane/Fastfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ platform :ios do
4242
scheme: "App",
4343
configuration: "Debug",
4444
export_method: "development",
45+
export_options: {
46+
provisioningProfiles: {
47+
"com.pokitmons.pokit" => "match Development com.pokitmons.pokit",
48+
"com.pokitmons.pokit.ShareExtension" => "match Development com.pokitmons.pokit.ShareExtension"
49+
}
50+
}
4551
)
4652
end
4753

@@ -66,7 +72,13 @@ platform :ios do
6672
workspace: "Pokit.xcworkspace",
6773
scheme: "App",
6874
configuration: "Release",
69-
export_method: "app-store-connect"
75+
export_method: "app-store",
76+
export_options: {
77+
provisioningProfiles: {
78+
"com.pokitmons.pokit" => "match AppStore com.pokitmons.pokit",
79+
"com.pokitmons.pokit.ShareExtension" => "match AppStore com.pokitmons.pokit.ShareExtension"
80+
}
81+
}
7082
)
7183
end
7284

0 commit comments

Comments
 (0)