Skip to content

Commit a14b53d

Browse files
committed
Fix iOS export signing mode
1 parent 3595a37 commit a14b53d

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

mobile/ios/fastlane/Fastfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,13 @@ platform :ios do
4242
archive_path: "App/output/App.xcarchive",
4343
output_directory: "App/output",
4444
output_name: output_name,
45-
export_method: "app-store",
45+
export_method: "app-store-connect",
4646
xcargs: [
4747
"DEVELOPMENT_TEAM=#{Shellwords.escape(team_id)}",
4848
"PRODUCT_BUNDLE_IDENTIFIER=#{Shellwords.escape(bundle_id)}",
4949
].join(" "),
5050
export_options: {
51-
signingStyle: "manual",
52-
signingCertificate: sign_identity,
53-
provisioningProfiles: {
54-
bundle_id => profile_name,
55-
},
51+
signingStyle: "automatic",
5652
teamID: team_id,
5753
manageAppVersionAndBuildNumber: false,
5854
}

0 commit comments

Comments
 (0)