Sha256: e27f6785d3c731505fc21a291ebeac230978eb3bbd40d64fca1cb06d6f3fa8f5

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 KB

Contents

module Fastlane
  module Actions
    class GitPullAction < Action
      def self.run(params)
        commands = []

        unless params[:only_tags]
          commands += ["git pull &&"]
        end

        commands += ["git fetch --tags"]

        Actions.sh(commands.join(' '))
      end

      def self.description
        "Executes a simple git pull command"
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :only_tags,
                                       description: "Simply pull the tags, and not bring new commits to the current branch from the remote",
                                       is_string: false,
                                       optional: true,
                                       default_value: false,
                                       verify_block: proc do |value|
                                         raise "Please pass a valid value for only_tags. Use one of the following: true, false" unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
                                       end)
        ]
      end

      def self.authors
        ["KrauseFx", "JaviSoto"]
      end

      def self.is_supported?(platform)
        true
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fastlane-1.68.0 lib/fastlane/actions/git_pull.rb
fastlane-1.67.0 lib/fastlane/actions/git_pull.rb
fastlane-1.66.0 lib/fastlane/actions/git_pull.rb
fastlane-1.65.0 lib/fastlane/actions/git_pull.rb
fastlane-1.64.0 lib/fastlane/actions/git_pull.rb
fastlane-1.63.1 lib/fastlane/actions/git_pull.rb
fastlane-1.63.0 lib/fastlane/actions/git_pull.rb
fastlane-1.62.0 lib/fastlane/actions/git_pull.rb