Skip to content

Commit

Permalink
add rake task that deploys to heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
filialpails committed Feb 12, 2014
1 parent f65980f commit bc67ab5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/tasks/deploy.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# I have a local branch called deploy which is one commit ahead of master
# that commit is the addition of the ROM file, to keep the ROM off Github
desc 'Deploy to heroku'
task :deploy do
`git checkout deploy`
`git merge master`
`git push heroku deploy:master`
`git checkout master`
end

0 comments on commit bc67ab5

Please sign in to comment.