Push from github to heroku without downloading repo

Viewed 16539

I have a github repo that I want to push to a heroku node. A 3rd host will be co-ordinating this. As I'm going to be doing this on a large scale I want to avoid having to download the contents of the repo onto the 3rd host. How do I do it?

4 Answers

About a year after my previous answer about codeship.io, Heroku launched the beginnings of their Pipeline feature set, which includes proper Github integration.

https://devcenter.heroku.com/articles/github-integration

The whole pipeline flow is really powerful, allowing for temporary instances based on branches, multiple app deployments, staging->production promotion, etc. More information can be found on Heroku's overview article.

Related