views:

106

answers:

1

Does Hudson support deploying builds based on repository labels?

+2  A: 

You can use the deploy feature in hudson to push successful builds to Production. There are also some post build plugins which can help you with pushes. I use this plugin called the POST build task to call a script which does my push to UAT/Staging (http://wiki.hudson-ci.org/display/HUDSON/Post+build+task)

For a complete list of plugins, please take a look at this link http://wiki.hudson-ci.org/display/HUDSON/Plugins Look at the Artifact uploaders and Post Build sections.

Ritesh M Nayak