Class: Fastlane::Actions::SupplyAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/supply.rb

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, method_missing, other_action, sh, step_text

Class Method Details

.authorsObject



51
52
53
54
# File 'lib/fastlane/actions/supply.rb', line 51

def self.authors
  # So no one will ever forget your contribution to fastlane :) You are awesome btw!
  ["KrauseFx"]
end

.available_optionsObject



38
39
40
41
42
# File 'lib/fastlane/actions/supply.rb', line 38

def self.available_options
  require 'supply'
  require 'supply/options'
  Supply::Options.available_options
end

.descriptionObject



30
31
32
# File 'lib/fastlane/actions/supply.rb', line 30

def self.description
  "Upload metadata, screenshots and binaries to Google Play"
end

.detailsObject



34
35
36
# File 'lib/fastlane/actions/supply.rb', line 34

def self.details
  "More information: https://github.com/fastlane/fastlane/tree/master/supply"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


56
57
58
# File 'lib/fastlane/actions/supply.rb', line 56

def self.is_supported?(platform)
  platform == :android
end

.outputObject



44
45
# File 'lib/fastlane/actions/supply.rb', line 44

def self.output
end

.return_valueObject



47
48
49
# File 'lib/fastlane/actions/supply.rb', line 47

def self.return_value
  # If you method provides a return value, you can describe here what it does
end

.run(params) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/fastlane/actions/supply.rb', line 4

def self.run(params)
  require 'supply'
  require 'supply/options'

  begin
    FastlaneCore::UpdateChecker.start_looking_for_update('supply') unless Helper.is_test?

    all_apk_paths = Actions.lane_context[SharedValues::GRADLE_ALL_APK_OUTPUT_PATHS] || []
    if all_apk_paths.length > 1
      params[:apk_paths] ||= all_apk_paths
    else
      params[:apk] ||= Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH]
    end

    Supply.config = params # we already have the finished config

    Supply::Uploader.new.perform_upload
  ensure
    FastlaneCore::UpdateChecker.show_update_status('supply', Supply::VERSION)
  end
end