diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index 9cd5105..ccea23c 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -7,7 +7,6 @@ default_platform(:ios)
BUNDLE_IDENTIFIER = "net.buzzert.QueueCube"
DEVELOPMENT_TEAM = "DQQH5H6GBD"
-PROVISIONING_PROFILE_NAME = "#{BUNDLE_IDENTIFIER} AppStore"
APP_ROOT = File.expand_path("..", File.expand_path(__dir__))
IOS_PROJECT_DIR = File.join(APP_ROOT, "ios")
XCODE_PROJECT = File.join(IOS_PROJECT_DIR, "QueueCube.xcodeproj")
@@ -57,16 +56,9 @@ def upload_export_options
method
app-store-connect
signingStyle
- manual
+ automatic
teamID
#{DEVELOPMENT_TEAM}
- signingCertificate
- Apple Distribution
- provisioningProfiles
-
- #{BUNDLE_IDENTIFIER}
- #{PROVISIONING_PROFILE_NAME}
-
manageAppVersionAndBuildNumber
stripSwiftSymbols
@@ -102,8 +94,7 @@ platform :ios do
"DEVELOPMENT_TEAM=#{DEVELOPMENT_TEAM}",
"PRODUCT_BUNDLE_IDENTIFIER=#{BUNDLE_IDENTIFIER}",
"MARKETING_VERSION=#{version}",
- "CURRENT_PROJECT_VERSION=#{build}",
- "CODE_SIGN_IDENTITY=Apple Distribution"
+ "CURRENT_PROJECT_VERSION=#{build}"
))
end