class Fastlane::Actions::UploadToAppStoreAction

Public Class Methods

author() click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 47
def self.author
  "KrauseFx"
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 41
def self.available_options
  require "deliver"
  require "deliver/options"
  FastlaneCore::CommanderGenerator.new.generate(Deliver::Options.available_options)
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 66
def self.category
  :production
end
description() click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 26
def self.description
  "Upload metadata and binary to App Store Connect (via _deliver_)"
end
details() click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 30
def self.details
  [
    "Using _upload_to_app_store_ after _build_app_ and _capture_screenshots_ will automatically upload the latest ipa and screenshots with no other configuration.",
    "",
    "If you don't want to verify an HTML preview for App Store builds, use the `:force` option.",
    "This is useful when running _fastlane_ on your Continuous Integration server:",
    "`_upload_to_app_store_(force: true)`",
    "If your account is on multiple teams and you need to tell the `iTMSTransporter` which 'provider' to use, you can set the `:itc_provider` option to pass this info."
  ].join("\n")
end
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 55
def self.example_code
  [
    'upload_to_app_store(
      force: true, # Set to true to skip verification of HTML preview
      itc_provider: "abcde12345" # pass a specific value to the iTMSTransporter -itc_provider option
    )',
    'deliver   # alias for "upload_to_app_store"',
    'appstore  # alias for "upload_to_app_store"'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 51
def self.is_supported?(platform)
  [:ios, :mac].include?(platform)
end
run(config) click to toggle source
# File fastlane/lib/fastlane/actions/upload_to_app_store.rb, line 7
def self.run(config)
  require 'deliver'

  begin
    config.load_configuration_file("Deliverfile")
    config[:screenshots_path] ||= Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] if Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH]
    config[:ipa] ||= Actions.lane_context[SharedValues::IPA_OUTPUT_PATH] if Actions.lane_context[SharedValues::IPA_OUTPUT_PATH]
    config[:pkg] ||= Actions.lane_context[SharedValues::PKG_OUTPUT_PATH] if Actions.lane_context[SharedValues::PKG_OUTPUT_PATH]

    # Only set :api_key from SharedValues if :api_key_path isn't set (conflicting options)
    unless config[:api_key_path]
      config[:api_key] ||= Actions.lane_context[SharedValues::APP_STORE_CONNECT_API_KEY]
    end

    return config if Helper.test?
    Deliver::Runner.new(config).run
  end
end