Add .gitlab-ci.yml

This commit is contained in:
Julian
2020-01-26 20:34:17 +01:00
parent 516b6ca450
commit e244b5980d

14
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,14 @@
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/plain-html
deploy-projects.rismer.de:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master