Add .gitlab-ci.yml

This commit is contained in:
Meutel 2017-03-29 23:34:14 +02:00
parent a3ae761e98
commit 5b80b06a8a
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