Class: Fastlane::Actions::LastGitTagAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
28
29
30
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 28
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
16
17
18
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 16
def self.available_options
[]
end
|
.category ⇒ Object
46
47
48
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 46
def self.category
:source_control
end
|
.description ⇒ Object
12
13
14
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 12
def self.description
"Get the most recent git tag"
end
|
.details ⇒ Object
36
37
38
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 36
def self.details
"If you are using this action on a **shallow clone**, *the default with some CI systems like Bamboo*, you need to ensure that you have also pulled all the git tags appropriately. Assuming your git repo has the correct remote set you can issue `sh('git fetch --tags')`."
end
|
.example_code ⇒ Object
40
41
42
43
44
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 40
def self.example_code
[
'last_git_tag'
]
end
|
.is_supported?(platform) ⇒ Boolean
32
33
34
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 32
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
20
21
22
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 20
def self.output
[]
end
|
.return_type ⇒ Object
24
25
26
|
# File 'fastlane/lib/fastlane/actions/last_git_tag.rb', line 24
def self.return_type
:string
end
|