Commit 9670a51f authored by Imran Hussain's avatar Imran Hussain
Browse files

Merge branch 'master' into 'beta'

SUCS Site auto deploy on push

See merge request !107
parents d6fee656 34804f8d
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