Commit 34804f8d authored by Imran Hussain's avatar Imran Hussain
Browse files

SUCS Site auto deploy on push

parent 4e2f8fb7
Loading
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -33,18 +33,22 @@ js-syntax-check:
   - npm install -g jshint        
   - find htdocs/js/ -name *.js ! -name jquery* | xargs -n 1 jshint --verbose

fake-deploy-beta:
deploy-beta:
  stage: deploy
  script:
   - echo "Hello World!"
   - apt update
   - apt install curl
   - curl https://beta.sucs.org/pull.php
  only:
   - beta
  environment: beta

fake-deploy-live:
deploy-live:
  stage: deploy
  script:
   - echo "Hello World!"
   - apt update
   - apt install curl
   - curl https://sucs.org/pull.php
  only:
   - sucs-site
  environment: live
 No newline at end of file

htdocs/pull.php

0 → 100644
+5 −0
Original line number Diff line number Diff line
<?php

exec("cd ..; git reset --hard HEAD; git pull");

?>
 No newline at end of file