From 3eccf2391b0684d4de15c7b2bea04f838838a3e0 Mon Sep 17 00:00:00 2001 From: Anian Schleyer <98647423+anian03@users.noreply.github.com> Date: Sat, 23 Nov 2024 00:30:37 +0100 Subject: [PATCH] Add team_id to fast file --- fastlane/Fastfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b1ec28ca..ac16a3dd 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -73,6 +73,7 @@ platform :ios do match( type: "appstore", + team_id: team_id, api_key: api_key, git_full_name: "Artemis IOS", git_branch: "main", # branch to store and get certificates from @@ -107,7 +108,7 @@ platform :ios do output_directory: "./build", # Directory where the output artifacts are generated codesigning_identity: "Apple Distribution: Technische Universitaet Muenchen (Edu) (T7PP2KY2B6)", scheme: "Artemis", - xcargs: "DEVELOPMENT_TEAM=T7PP2KY2B6 -skipMacroValidation -skipPackagePluginValidation" + xcargs: "-skipMacroValidation -skipPackagePluginValidation" ) end