From 3a411fe576fa8afd7955c1fb6524de513c3c2aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Thu, 26 Oct 2023 19:25:08 +0200 Subject: [PATCH] refactor: rollback pod install step --- .../plugin/ios_cd/actions/build_and_deploy_action.rb | 9 +++++++++ 1 file changed, 9 insertions(+) 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 9a65618..615d346 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 @@ -61,6 +61,15 @@ module Fastlane ) UI.message("🍺 API Key formated") + # Install Cocoapods + other_action.cocoapods( + clean_install: true, + clean: true, + integrate: true, + podfile: "./Podfile" + ) + UI.message("🍺 Pod got") + # Set up code signing using match # Configures and runs `match` which manages code signing certificates and provisioning profiles for the project. # The function takes the app's bundle identifier, an authorization token for the project's Git repository, and the name and password for a temporary keychain used to store the signing certificate. -- 2.47.2