class Fastlane::Actions::EnRemoveKeychainAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_remove_keychain.rb, line 23
def self.authors
  ["Nicolae Ghimbovschi"]
end
description() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/ciutils/actions/en_remove_keychain.rb, line 19
def self.description
  "Removes the keychain setup by en_setup_keychain"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_remove_keychain.rb, line 27
def self.is_supported?(platform)
  true
end
run(params) click to toggle source
# File lib/fastlane/plugin/ciutils/actions/en_remove_keychain.rb, line 7
def self.run(params)
  begin
    keychain_name = Actions.lane_context[SharedValues::EN_KEYCHAIN_NAME]
    other_action.delete_keychain(name: keychain_name)
  rescue
  end
end