Sha256: 73d77b18b08e0538a8c7c12b3abf1ea71ded11750e6c113fbf8e796d1a15d7ca

Contents?: true

Size: 1.98 KB

Versions: 460

Compression:

Stored size: 1.98 KB

Contents

module Fastlane
  module Actions
    # Pushes commits to the remote hg repo
    class HgPushAction < Action
      def self.run(params)
        command = ['hg', 'push']

        command << '--force' if params[:force]
        command << params[:destination] unless params[:destination].empty?

        return command.join(' ') if Helper.test?

        Actions.sh(command.join(' '))
        UI.success('Successfully pushed changes to remote 🚀.')
      end

      def self.description
        "This will push changes to the remote hg repository"
      end

      def self.details
        "The mercurial equivalent of [push_to_git_remote](https://docs.fastlane.tools/actions/push_to_git_remote/). Pushes your local commits to a remote mercurial repo. Useful when local changes such as adding a version bump commit or adding a tag are part of your lane’s actions."
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :force,
                                       env_name: "FL_HG_PUSH_FORCE",
                                       description: "Force push to remote",
                                       is_string: false,
                                       default_value: false),
          FastlaneCore::ConfigItem.new(key: :destination,
                                       env_name: "FL_HG_PUSH_DESTINATION",
                                       description: "The destination to push to",
                                       default_value: '',
                                       optional: true)
        ]
      end

      def self.author
        # credits to lmirosevic for original git version
        "sjrmanning"
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'hg_push',
          'hg_push(
            destination: "ssh://hg@repohost.com/owner/repo",
            force: true
          )'
        ]
      end

      def self.category
        :source_control
      end
    end
  end
end

Version data entries

460 entries across 460 versions & 2 rubygems

Version Path
fastlane_iac_publish-0.1.5 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.127.2 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190719200019 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190718200101 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190717200026 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190716200022 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190715200056 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190714200028 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190713200107 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190712200059 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190711200117 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.127.1 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.128.0.beta.20190710200106 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.127.0 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.127.0.beta.20190709200015 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.127.0.beta.20190708200031 fastlane/lib/fastlane/actions/hg_push.rb
fastlane_iac_publish-0.1.4 fastlane/lib/fastlane/actions/hg_push.rb
fastlane_iac_publish-0.1.3 fastlane/lib/fastlane/actions/hg_push.rb
fastlane_iac_publish-0.1.2 fastlane/lib/fastlane/actions/hg_push.rb
fastlane-2.127.0.beta.20190707200017 fastlane/lib/fastlane/actions/hg_push.rb