mirror of https://github.com/rails/rails
we should use annotated tags for releases.
Annotated tags will provide us with Tagger and Time information.
This commit is contained in:
parent
76f8d31046
commit
3de199988f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue