class Fastlane::Actions::CiTeardownAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/yalantis_ci/actions/ci_teardown.rb, line 13
    def self.authors
  ["Dima Vorona", "Yalantis"]
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/yalantis_ci/actions/ci_teardown.rb, line 17
def self.is_supported?(platform)
  [:ios, :mac].include?(platform)
end
run(params) click to toggle source
# File lib/fastlane/plugin/yalantis_ci/actions/ci_teardown.rb, line 4
def self.run(params)
  if !Helper.ci? 
    UI.important("Not executed by Continuous Integration system")
    return
  end

  other_action.delete_keychain if File.exist?(ENV['KEYCHAIN_PATH'])
end