DEV Community

Discussion on: Set up Automated Deployments From Github With Webhook

Collapse
 
greengreens3 profile image
Alex Boutin

This is a great way to add CD into an application, but what about Github Actions instead? 🤔

By using Github action, you could trigger a Build and Deploy directly on github after a push or merge on master.

Better even: Github Action stop if the build fails and prevent your server from being unresponsive from a failed build.

Collapse
 
maximization profile image
Maxim Orlov

Hi Alex, Github Actions is also a good choice for setting up auto-deployments. There are many different ways to achieve the same result in DevOps and I always recommend folks to go with the tools they're most familiar with.