Sha256: 829d9af5032fea16f0e63132c541f074f4ab9459e6f5a3f15829a4272c42401a
Contents?: true
Size: 1.09 KB
Versions: 172
Compression:
Stored size: 1.09 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 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
172 entries across 172 versions & 1 rubygems