Add .gitlab-ci.yml, test for Gitlab Pages with custom domain

This commit is contained in:
Phuntsok Drak-pa 2018-11-29 14:48:09 +00:00
parent 6062b15879
commit 6267908ce4
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