Sha256: ffd4526308463f0c2e0c6537b64d95b1077b374233ebff5e9af97ca5a8509a38
Contents?: true
Size: 1.08 KB
Versions: 384
Compression:
Stored size: 1.08 KB
Contents
module Fastlane module Actions class LastGitTagAction < Action def self.run(params) Actions.last_git_tag_name end ##################################################### # @!group Documentation ##################################################### def self.description "Get the most recent git tag" end def self.available_options [] end def self.output [] end def self.return_type :string end def self.authors ["KrauseFx"] end def self.is_supported?(platform) true end 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 def self.example_code [ 'last_git_tag' ] end def self.category :source_control end end end end
Version data entries
384 entries across 384 versions & 2 rubygems