heroku / heroku-jenkins-plugin

DEPRECATED: A plugin for interacting with Heroku during Jenkins builds
45 stars 9 forks source link

Provide a Heroku Git push deployment #12

Closed kretes closed 12 years ago

kretes commented 12 years ago

IT would be nice to deploy to heroku with git push --force option, since this is not available in the git plugin

Configuration that needs to be specified is the local branch that should be pushed to heroku

ryanbrainard commented 12 years ago

I've considered doing something like this, but should be pretty easy with the Execute Shell build step with just git push --force heroku my_branch:master. Have you tried that out?

kretes commented 12 years ago

Hi, yes this is working, you are right , i can even do HEAD:master so that I will have branch_name configured in only one place. fine for me