Sha256: e13f6a103dfa9b826c02d472b77a544fbadc3e679f63cf66af6d7ad4ae2c59f5
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
module Fastlane module Actions class PilotAction < Action def self.run(values) require 'pilot' require 'pilot/options' begin FastlaneCore::UpdateChecker.start_looking_for_update('pilot') unless Helper.is_test? Pilot::BuildManager.new.upload(values) # we already have the finished config return nil ensure FastlaneCore::UpdateChecker.show_update_status('pilot', Pilot::VERSION) end end ##################################################### # @!group Documentation ##################################################### def self.description "Upload a new binary to iTunes Connect for TestFlight beta testing" end def self.details [ "More details can be found on https://github.com/fastlane/pilot", "This integration will only do the TestFlight upload" ].join("\n") end def self.available_options require "pilot" require "pilot/options" FastlaneCore::CommanderGenerator.new.generate(Pilot::Options.available_options) end def self.authors ["KrauseFx"] end def self.is_supported?(platform) platform == :ios end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastlane-1.20.0 | lib/fastlane/actions/pilot.rb |