Pages/Jekyll

This commit is contained in:
GitLab 2019-11-13 22:11:44 +01:00 committed by Marc Schwede
commit 411e1abf61
27 changed files with 1045 additions and 0 deletions

28
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,28 @@
image: ruby:2.3
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
before_script:
- bundle install
test:
stage: test
script:
- bundle exec jekyll build -d test
artifacts:
paths:
- test
except:
- master
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master