From dbc8c0fed6b242a2ca9b445498c1dfaec6f32509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Mon, 1 May 2023 21:21:11 +0200 Subject: [PATCH] feat: add logs and parameters to match --- .../fastlane/plugin/ios_cd/actions/build_and_deploy_action.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/actions/build_and_deploy_action.rb b/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/actions/build_and_deploy_action.rb index 4a3d2cd..06384cc 100644 --- a/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/actions/build_and_deploy_action.rb +++ b/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/actions/build_and_deploy_action.rb @@ -67,7 +67,7 @@ module Fastlane # It uses the App Store Connect API key to access the App Store and increment the build number. # It then runs `gym` to build and sign the app using the selected provisioning profile, and finally, uses `pilot` to upload the app to TestFlight for beta testing. Actions::MatchAction.run( - api_key: api_key + api_key: api_key, type: 'appstore', app_identifier: creds['app_identifier_extensions'], git_basic_authorization: Base64.strict_encode64(ENV["GIT_AUTHORIZATION"]), @@ -78,7 +78,7 @@ module Fastlane team_id: "118579280", team_name: "Jagger & Lewis", team_name: "https://github.com/JaggerLewis/jl2022_cert.git", - storage_mode: "git", + storage_mode: "git" ) UI.message("👉🏼 App signed")