Skip signing

This commit is contained in:
Ian VanSchooten 2024-10-15 10:41:06 -04:00
parent 4c6d9d0745
commit daa634fdb3
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,8 @@ default_platform(:ios)
platform :ios do platform :ios do
desc "Push a new beta build to TestFlight" desc "Push a new beta build to TestFlight"
setup_ci
lane :checkBuild do lane :checkBuild do
build_app( build_app(
output_name: "MobileNebula.ipa", output_name: "MobileNebula.ipa",
@ -25,6 +27,8 @@ platform :ios do
scheme: "Runner", scheme: "Runner",
configuration: "Debug", configuration: "Debug",
export_method: "development", 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: { export_options: {
manageAppVersionAndBuildNumber: false manageAppVersionAndBuildNumber: false
} }