Add .gitlab-ci.yml

This commit is contained in:
Andy Balaam 2020-01-24 10:58:37 +00:00
parent 04ebf70502
commit a0713211cc

11
.gitlab-ci.yml Normal file
View File

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