Skip to content

Instantly share code, notes, and snippets.

@matysanchez
Created October 26, 2019 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matysanchez/7c0607c1665f7143766b9634c66d0615 to your computer and use it in GitHub Desktop.
Save matysanchez/7c0607c1665f7143766b9634c66d0615 to your computer and use it in GitHub Desktop.
Easy setup to create a CD process for any VM using GitHub webhooks
<?php
$command = exec('sudo ./update.sh');
print_r($command);
?>
#!/bin/bash
cd wp-content/themes/wordcamp-guadalajara
git pull
npm install
gulp minifycss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment