release: switch to use rc branches

This commit is contained in:
rkiel
2017-09-23 08:35:52 -04:00
parent 1a8a325eba
commit 0655354134
8 changed files with 73 additions and 16 deletions

View File

@@ -40,11 +40,11 @@ module Shared
end
def git_local_tag ( tag )
run_cmd "git tag -a 'v#{tag}' -m 'v#{tag}'"
run_cmd "git tag -a '#{tag}' -m '#{tag}'"
end
def git_local_list_tags
`git tag -l 'v*'`.strip.split(/\s+/).sort
def git_local_list_tags (release_tag_prefix)
`git tag -l '#{release_tag_prefix}*'`.strip.split(/\s+/).sort
end
def git_prune