From cfd023be69d9331c72fc69d13a12e9c8bbddcf97 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Sat, 30 May 2026 20:45:52 -0700 Subject: [PATCH] Let Xcode manage release signing --- fastlane/Fastfile | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) 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