From b67a267ca5c4b75295bc825b75679373df1f5311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Tue, 2 May 2023 09:41:34 +0200 Subject: [PATCH] fix: rollback native actions calls in helper --- .../lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb b/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb index a0bf867..308892f 100644 --- a/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb +++ b/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb @@ -8,7 +8,7 @@ module Fastlane # Define method to delete temporary keychain def self.delete_temp_keychain(name) if File.exist?(File.expand_path("~/Library/Keychains/#{name}-db")) - other_action.deelete_keychain.run( + Actions::DeleteKeychainAction.run( name: name ) end @@ -16,7 +16,7 @@ module Fastlane # Define method to create temporary keychain def self.create_temp_keychain(name, password) - other_actions.create_keychain_action.run( + Actions::CreateKeychainAction.run( name: name, password: password, unlock: false,