Sha256: cdcd722c9b8667d7b16d1ccb6ca4a1274058029cebf83e94dfeed951496e2e0b
Contents?: true
Size: 1.69 KB
Versions: 2
Compression:
Stored size: 1.69 KB
Contents
require 'shellwords' module Fastlane module Actions class InstallProvisioningProfileAction < Action def self.run(params) absolute_path = File.expand_path(params[:path]) FastlaneCore::ProvisioningProfile.install(absolute_path) end def self.description "Install provisioning profile from path" end def self.details "Install provisioning profile from path for current user" end def self.authors ["SofteqDG"] end def self.category :code_signing end def self.is_supported?(platform) [:ios, :mac].include?(platform) end def self.available_options [ FastlaneCore::ConfigItem.new(key: :path, env_name: "FL_INSTALL_PROVISIONING_PROFILE_PATH", description: "Path to provisioning profile", optional: false, type: String, verify_block: proc do |value| absolute_path = File.expand_path(value) unless File.exist?(absolute_path) UI.user_error!("Could not find provisioning profile at path: '#{value}'") end end) ] end def self.return_value "The absolute path to the installed provisioning profile" end def self.example_code [ 'install_provisioning_profile(path: "profiles/profile.mobileprovision")' ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.165.1 | fastlane/lib/fastlane/actions/install_provisioning_profile.rb |
fastlane_hotfix-2.165.0 | fastlane/lib/fastlane/actions/install_provisioning_profile.rb |