class Fastlane::Actions::CiTeardownAction
Public Class Methods
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