Add .gitlab-ci.yml

This commit is contained in:
Vicky Steeves 2020-07-24 16:00:23 +00:00
parent 161663d244
commit d481e4bc06
1 changed files with 12 additions and 0 deletions

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
# Full project: https://gitlab.com/pages/plain-html
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master