I read an article describing Continuous Deployment with jenkins thusly:
- Create a 'test' job that runs your tests.
- Create a 'deploy' job that deploys your app.
- Make the 'test' job trigger 'deploy' on successful build.
I can do that just fine. However, I have a generic 'test' job right now the runs tests for any branch that I push. Is there a way to make it only trigger the 'deploy' job if I pushed to the 'production' branch?
Otherwise, I can always add a second 'test-production' job that only triggers when I push to production, and it triggers deploy afterwards...but that's not what I want to do.