Sha256: d559bfe5a498da715d7bd0542a38fff10106daa226ac24f62f6efb99d17a8183
Contents?: true
Size: 754 Bytes
Versions: 36
Compression:
Stored size: 754 Bytes
Contents
module Fastlane module Actions class PushGitTagsAction < Action def self.run(params) command = [ 'git', 'push', '--tags' ] result = Actions.sh(command.join(' ')) UI.success('Tags pushed to remote') result end ##################################################### # @!group Documentation ##################################################### def self.description "Push local tags to the remote - this will only push tags" end def self.available_options [ ] end def self.author ['vittoriom'] end def self.is_supported?(platform) true end end end end
Version data entries
36 entries across 36 versions & 1 rubygems