From daa634fdb360326644fcefb85c35e6c22035c42d Mon Sep 17 00:00:00 2001 From: Ian VanSchooten Date: Tue, 15 Oct 2024 10:41:06 -0400 Subject: [PATCH] Skip signing --- ios/fastlane/Fastfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index fca45eb..6218c44 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -18,6 +18,8 @@ default_platform(:ios) platform :ios do desc "Push a new beta build to TestFlight" + setup_ci + lane :checkBuild do build_app( output_name: "MobileNebula.ipa", @@ -25,6 +27,8 @@ platform :ios do scheme: "Runner", configuration: "Debug", export_method: "development", + skip_codesigning: true, + export_team_id: CredentialsManager::AppfileConfig.try_fetch_value(:team_id), # This requires the team_id to be set in the fastlane `Appfile` export_options: { manageAppVersionAndBuildNumber: false }