Add .gitlab-ci.yml

This commit is contained in:
Kamil Trzcinski 2015-12-17 12:49:09 +01:00
parent 065b20cef4
commit c6e3b66fd8
2 changed files with 12 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
_site
_site
public

10
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,10 @@
pages:
stage: deploy
image: jekyll/jekyll
script:
- jekyll build -d public
artifacts:
paths:
- public
only:
- master