Sha256: 8ba3725c39f334f34a57850fb532a37afc6d936590ebc6d7b17dfc4d3331ceee
Contents?: true
Size: 1.04 KB
Versions: 202
Compression:
Stored size: 1.04 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.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 have 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
202 entries across 202 versions & 1 rubygems