In this article we’ll show you how to automatically deploy to servers managed by — in the easiest way possible. WordPress GoDaddy The pains of deployment Updating a website nowadays is a challenge: before uploading it to the server you probably need to run some tasks with Gulp or Grunt, bundle assets with Webpack, update media on S3, and so on, and so on. Oh, and don’t forget about flushing that cache after the deployment! You can do all of the above with DevOps tools like Jenkins, but to an average developer spending several hours on configuration seems like an overkill. Not many developers know, however, that you can easily streamline all of this stuff down to a push to your Git repository with a simple tool called Buddy. single Automation simplified Buddy lets you deploy your website on a single push to repo, on click, or automatically on a time interval. You can deploy anywhere: FTP, SFTP, DigitalOcean, AWS, Google, and so on. In this example we shall use SFTP, the secure type of protocol we always advise over regular FTP. In short, Buddy uses delivery pipelines to deploy your website. Configuration is very fast and feels like building a house of bricks: all you need to do is pick an action, configure access details, and arrange it in line. Step 1: Configure the pipeline 1. with your GitHub account and select the repository with your website sources: Sign up to Buddy 2. Create a , switch the trigger mode to , and select the to which the pipeline will be assigned. For example, if you assign the pipeline to the Master branch, it will be automatically executed on every push to Master. new pipeline on push branch 3. Now it’s time to configure the delivery. Select the action and enter the details to your GoDaddy instance (hostname, username, and password) SFTP There you can also select the remote path where Buddy will deploy the files, for example ~/html/wp-content/themes/my-theme You can find the credentials in your : click the Settings button of the managed WordPress server and Switch to the SSH & SFTP tab. GoDaddy account 4. The last part is flushing the cache after the deployment. Select the action and fill in the same connection credentials that you used in step 3. In the commands field, enter: SSH wp godaddy cache flush You can add more commands if you wish, each in a separate line: wp godaddy cache flushwp theme update --allwp core update 5. With everything in place, click to save the changes. Add new pipeline Step 2: Run the pipeline All you need to do is make a push to the assigned branch and watch Buddy automatically update your website: Step 3: Expand the pipeline The pipeline above can be easily expanded with additional actions. You can add run Gulp/Grunts before the deployment, update assets in your S3 bucket, send a notification to your Slack channel, and much more. You can also set up monitoring that will check your website for downtime and let you know to your mobile: All of a sudden, this whole DevOps thing doesn’t seem so bad, does it? :) Automate now! If you’d like to learn more about handling WordPress deployments, you can check out our , or reach out via the live-chat on the site. The service has a 14-day trial with 1 project always free, which makes it perfect for updating your side project. guides section Thanks for reading!