aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/release.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-11-14 16:51:02 +0000
committerJon Leighton <j@jonathanleighton.com>2011-11-14 16:55:31 +0000
commit156784fef1f66dddcdfb753839f2d37bbee41655 (patch)
tree13e32c3367b2cb5a45e57b1ce05e4441b2d2a8d1 /tasks/release.rb
parent11c9fc936427453d7499a58aadcb766cc0f69ec4 (diff)
downloadrails-156784fef1f66dddcdfb753839f2d37bbee41655.tar.gz
rails-156784fef1f66dddcdfb753839f2d37bbee41655.tar.bz2
rails-156784fef1f66dddcdfb753839f2d37bbee41655.zip
rake release should push the tag
Diffstat (limited to 'tasks/release.rb')
-rw-r--r--tasks/release.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/release.rb b/tasks/release.rb
index 33aaee5a4b..191c014f9f 100644
--- a/tasks/release.rb
+++ b/tasks/release.rb
@@ -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)