diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 0ca13266..880b0963 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -10,7 +10,8 @@ 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_certificates(api_key_path:"APPLE_SECRETS.json") + get_provisioning_profile(force: true, 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")