Sha256: a0a543b1c19ccb69024208bf2da0c3a9a9bc9dfc50fb082582e12da394107277
Contents?: true
Size: 914 Bytes
Versions: 9
Compression:
Stored size: 914 Bytes
Contents
module Fastlane module Actions module SharedValues SIGH_PROFILE_PATH = :SIGH_PROFILE_PATH SIGH_UDID = :SIGH_UDID end class SighAction def self.run(params) require 'sigh' require 'sigh/options' require 'sigh/manager' require 'credentials_manager/appfile_config' values = params.first unless values.kind_of?Hash # Old syntax values = {} params.each do |val| values[val] = true end end Sigh.config = FastlaneCore::Configuration.create(Sigh::Options.available_options, (values || {})) path = Sigh::Manager.start Actions.lane_context[SharedValues::SIGH_PROFILE_PATH] = path # absolute path Actions.lane_context[SharedValues::SIGH_UDID] = ENV["SIGH_UDID"] if ENV["SIGH_UDID"] # The UDID of the new profile end end end end
Version data entries
9 entries across 9 versions & 1 rubygems