From 51d1d9b8e26c92081e43c1e10e35108c7df746d2 Mon Sep 17 00:00:00 2001 From: Codel1417 Date: Mon, 20 May 2024 16:39:47 -0400 Subject: [PATCH] add cert section to fastlane ios --- ios/fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index dae5f3c4..0ca13266 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -10,6 +10,7 @@ platform :ios do # note the `..`, since fastlane runs in the _fastlane_ directory changelog = File.read("../../CHANGELOG.md") + sync_code_signing(api_key_path:"APPLE_SECRETS.json") #get_push_certificate build_app(workspace: "Runner.xcworkspace", scheme: "Runner") upload_to_testflight(skip_waiting_for_build_processing: true, changelog:changelog, build_number: ENV['BUILD_NUMBER'], app_version: ENV['VERSION'], reject_build_waiting_for_review: true, api_key_path:"APPLE_SECRETS.json")