1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

rake release should push the tag

This commit is contained in:
Jon Leighton 2011-11-14 16:51:02 +00:00
parent 11c9fc9364
commit 156784fef1

View file

@ -116,6 +116,7 @@ namespace :all do
task :tag do
sh "git tag #{tag}"
sh "git push --tags"
end
task :release => %w(ensure_clean_state build commit tag push)