socialnerds/excelsior
socialnerds
/
excelsior
Archived
1
0
Fork 0

added ci file

This commit is contained in:
david 2017-05-06 10:16:19 +02:00
parent 66bc063116
commit cda6acaf9b
1 changed files with 37 additions and 0 deletions

37
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,37 @@
stages:
- test
- build
- deploy
test:
stage: test
tags:
- jekyll
script:
- jekyll build -d test
except:
- master
build:
stage: deploy
tags:
- jekyll
script:
- jekyll build -d public
only:
- master
deploy:
stage: deploy
tags:
- jekyll
script:
- jekyll build -d public
- rsync -av --delete public/ /home/user-data/www/default/
environment:
name: production
url: https://excelsior.socialnerds.org
only:
- master