deploy-local-httpd.sh 535 B

1234567891011121314
  1. #!/bin/bash
  2. echo "[post-receive] Beginning check and deploy script :"
  3. while read oldrev newrev ref
  4. do
  5. if [[ $ref =~ .*/master$ ]];
  6. then
  7. echo "[post-receive] Master ref received. Deploying master branch to production..."
  8. git --work-tree=/var/www/jovian --git-dir=/home/gituser/StaticJovian.git checkout master -f
  9. else
  10. echo "[post-receive] Ref $ref successfully received."
  11. echo "[post-receive] Doing nothing: only the master branch may be deployed on this server."
  12. fi
  13. done
  14. echo "[post-receive] End of script."