Added GitLab support for GitLab pages and GitLab Edit Links

This commit is contained in:
chickahoona
2017-08-20 17:28:45 +02:00
parent 2690b49fe9
commit 12908878e0
14 changed files with 2731 additions and 567 deletions

26
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,26 @@
image: ruby:2.3
variables:
JEKYLL_ENV: production
test:
stage: test
script:
- sh ./var/build.sh
- bundle exec jekyll build -d test
artifacts:
paths:
- test
except:
- master
pages:
stage: deploy
script:
- sh ./var/build.sh
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master