Sha256: 1194e998d91b359d53a4bf4006d3cc45be72a24f83f8c9d1d7af067df8ed89b4

Contents?: true

Size: 1.45 KB

Versions: 41

Compression:

Stored size: 1.45 KB

Contents

module Fastlane
  module Actions
    class SupplyAction < Action
      def self.run(params)
        require 'supply'
        require 'supply/options'

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

          params[:apk] ||= Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH]

          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

      #####################################################
      # @!group Documentation
      #####################################################

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

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

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

      def self.output
      end

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

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

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

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
fastlane-1.66.0 lib/fastlane/actions/supply.rb
fastlane-1.65.0 lib/fastlane/actions/supply.rb
fastlane-1.64.0 lib/fastlane/actions/supply.rb
fastlane-1.63.1 lib/fastlane/actions/supply.rb
fastlane-1.63.0 lib/fastlane/actions/supply.rb
fastlane-1.62.0 lib/fastlane/actions/supply.rb
fastlane-1.61.0 lib/fastlane/actions/supply.rb
fastlane-1.60.0 lib/fastlane/actions/supply.rb
fastlane-1.59.0 lib/fastlane/actions/supply.rb
fastlane-1.58.0 lib/fastlane/actions/supply.rb
fastlane-1.57.0 lib/fastlane/actions/supply.rb
fastlane-1.56.0 lib/fastlane/actions/supply.rb
fastlane-1.55.0 lib/fastlane/actions/supply.rb
fastlane-1.54.0 lib/fastlane/actions/supply.rb
fastlane-1.53.0 lib/fastlane/actions/supply.rb
fastlane-1.52.0 lib/fastlane/actions/supply.rb
fastlane-1.51.0 lib/fastlane/actions/supply.rb
fastlane-1.50.0 lib/fastlane/actions/supply.rb
fastlane-1.49.0 lib/fastlane/actions/supply.rb
fastlane-1.48.0 lib/fastlane/actions/supply.rb