Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations. Closed 15 hours ago. Improve this question I've been trying to build a pipeline to do CI/CD on a WordPress site which is on shared hosting. My team usually updates the WordPress theme and publishes directly so I want them to avoid doing that and start pushing changes to GitHub for backup and security purposes. What I've tried so far is: A WordPress plugin that pushes the changes to GitHub(but to a public repo). manually cloning the git repo from the shared hosting and pushing them into a private repo on GitHub (this is the worst case scenario because slowness). I read about GitHub actions but since my team works directly on the WordPress site to edit the theme, the changes don't trigger the GitHub actions for automatic deployment. Has anyone done a similar pipeline before? Or what has been your approach to this dilema?