Class: Fastlane::Actions::HgPushAction
Overview
Pushes commits to the remote hg repo
Class Method Summary
collapse
action_name, authors, details, output, sh, step_text
Class Method Details
.author ⇒ Object
37
38
39
40
|
# File 'lib/fastlane/actions/hg_push.rb', line 37
def self.author
"sjrmanning"
end
|
.available_options ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/fastlane/actions/hg_push.rb', line 22
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :force,
env_name: "FL_HG_PUSH_FORCE",
description: "Force push to remote. Defaults to false",
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
|
.description ⇒ Object
18
19
20
|
# File 'lib/fastlane/actions/hg_push.rb', line 18
def self.description
"This will push changes to the remote hg repository"
end
|
.is_supported?(platform) ⇒ Boolean
42
43
44
|
# File 'lib/fastlane/actions/hg_push.rb', line 42
def self.is_supported?(platform)
true
end
|
.run(params) ⇒ Object
5
6
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/fastlane/actions/hg_push.rb', line 5
def self.run(params)
command = ['hg', 'push']
command << '--force' if params[:force]
command << params[:destination] unless params[:destination].empty?
return command.join(' ') if Helper.is_test?
Actions.sh(command.join(' '))
Helper.log.info 'Successfully pushed changes to remote 🚀.'.green
end
|