change deploy call

remove_hooks
Thomas Reynolds 2015-02-13 14:42:17 -08:00
parent 2f558ec571
commit f11057c70c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ desc 'Pushes repository to GitHub'
task :push do
puts 'Pushing to github...'
sh "git tag v#{Middleman::VERSION}"
sh 'git push origin master'
sh 'git push'
sh "git push origin v#{Middleman::VERSION}"
end