Add .gitlab-ci.yml

This commit is contained in:
Vicky Steeves 2019-08-01 21:16:11 +00:00 committed by Remi Rampin
parent 4e3c206a87
commit 713193e8db
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