Sha256: e91a1ec1b12957bebb52409d07c992a344faeb52d465366215d31b6022fbee36
Contents?: true
Size: 1.01 KB
Versions: 495
Compression:
Stored size: 1.01 KB
Contents
module Fastlane module Actions # Adds a hg tag to the current commit class HgAddTagAction < Action def self.run(options) tag = options[:tag] UI.message("Adding mercurial tag '#{tag}' 🎯.") command = "hg tag \"#{tag}\"" return command if Helper.is_test? Actions.sh(command) end def self.description "This will add a hg tag to the current branch" end def self.available_options [ FastlaneCore::ConfigItem.new(key: :tag, env_name: "FL_HG_TAG_TAG", description: "Tag to create") ] end def self.author # credits to lmirosevic for original git version "sjrmanning" end def self.is_supported?(platform) true end def self.example_code [ 'hg_add_tag(tag: "1.3")' ] end def self.category :source_control end end end end
Version data entries
495 entries across 495 versions & 1 rubygems