Add .gitlab-ci.yml.

This commit is contained in:
Douwe Maan 2015-12-22 10:58:44 +00:00
parent 5bc0e7bd36
commit a7bf720a3b
1 changed files with 11 additions and 0 deletions

11
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,11 @@
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master