Add .gitlab-ci.yml to create public artifact

This commit is contained in:
Lil-Missy 2020-12-18 12:07:01 +00:00
parent 823a14bf2d
commit 5835b468fb
1 changed files with 13 additions and 0 deletions

13
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,13 @@
image: alpine:latest
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master