From f3f45fdfdca5c24f8f7a5f538cd4360199a2500b Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 18 Jul 2026 18:00:57 +0200 Subject: [PATCH] Fix mac notarized build archiving wrong platform build_mac_app in the build_and_notarize lane was missing the sdk and destination overrides needed for the multiplatform scheme, so gym archived for tvOS and failed on provisioning profiles. Mirror the working mac beta lane. --- fastlane/Fastfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0183e8f7..790d807a 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -328,6 +328,8 @@ platform :mac do build_mac_app( scheme: SCHEME, + sdk: "macosx", + destination: "generic/platform=macOS", configuration: "Release-DeveloperID", output_directory: "fastlane/builds/#{version}-#{build}/macOS", output_name: APP_NAME,