DEV Community

Discussion on: The best automated deployment tool is… the one that fits your needs

Collapse
 
taragrg6 profile image
taragurung

Thanks, I regularly go through your post. Normally, this is how we deploy. We setup a jenkins for CI and CD. We add options to choose the branch or Tag to deploy from the Repo and deploy it to selected instance.

How can we add the deployment tools in our pipeline. or in our flow rather than depending completely on jenkins. How will it be if we choose the deployment tools too.

Thanks you

Collapse
 
geshan profile image
Geshan Manandhar

If the current setup works I would say just use it. If you want to add the tools like capistrano or Fabric add it after the tests pass. So then Jenkins just runs the cap or fab command if the tests passed. Thanks!