add .gitlab-ci.yml

This commit is contained in:
milahu 2021-05-16 11:53:23 +02:00
parent fe28b7e67e
commit dcfa47c940
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