we should use annotated tags for releases.

Annotated tags will provide us with Tagger and Time information.
This commit is contained in:
Yves Senn 2013-12-18 08:56:19 +01:00
parent 76f8d31046
commit 3de199988f
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ what to do in case anything goes wrong:
$ rake all:build
$ git commit -am'updating RAILS_VERSION'
$ git tag -m'tagging rc release' v3.0.10.rc1
$ git tag -a -m'tagging rc release' v3.0.10.rc1
$ git push
$ git push --tags
$ for i in $(ls pkg); do gem push $i; done

View File

@ -120,7 +120,7 @@ namespace :all do
end
task :tag do
sh "git tag #{tag}"
sh "git tag -a #{tag}"
sh "git push --tags"
end