From 8e26f0a0669a3501a2fb249c3a3deeafb5ddf388 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Mon, 6 Jul 2026 08:43:11 -0700 Subject: [PATCH] Use match signing team for deployment --- .env.example | 2 +- fastlane/Fastfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index f4fbc81..2770ad8 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,6 @@ FASTLANE_SKIP_UPDATE_CHECK=1 FASTLANE_HIDE_CHANGELOG=1 -FASTLANE_TEAM_ID=3SJALV9BQ7 +FASTLANE_TEAM_ID=DQQH5H6GBD APP_STORE_CONNECT_KEY_ID= APP_STORE_CONNECT_ISSUER_ID= diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 711fdd4..c0bd806 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -6,7 +6,7 @@ default_platform(:ios) APP_IDENTIFIER = "net.buzzert.attractor" SCHEME = "Attractor" TARGET_NAME = "App" -TEAM_ID = ENV["FASTLANE_TEAM_ID"].to_s.strip.empty? ? "3SJALV9BQ7" : ENV["FASTLANE_TEAM_ID"] +TEAM_ID = ENV["FASTLANE_TEAM_ID"].to_s.strip.empty? ? "DQQH5H6GBD" : ENV["FASTLANE_TEAM_ID"] PROFILE_NAME = ENV["ATTRACTOR_PROVISIONING_PROFILE_SPECIFIER"].to_s.strip.empty? ? "Attractor AppStore CI" : ENV["ATTRACTOR_PROVISIONING_PROFILE_SPECIFIER"] CI_KEYCHAIN_NAME = "attractor_ci_keychain" CI_KEYCHAIN_PASSWORD = "attractor-ci-keychain-password"