Sha256: 39d076342e4fe7f1ec26e11fe6903f77fddc2c757d7452a962ed2772d9a1ef2a
Contents?: true
Size: 764 Bytes
Versions: 69
Compression:
Stored size: 764 Bytes
Contents
module Fastlane module Actions class PushGitTagsAction < Action def self.run(params) command = [ 'git', 'push', '--tags' ] result = Actions.sh(command.join(' ')) Helper.log.info 'Tags pushed to remote'.green 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
69 entries across 69 versions & 1 rubygems