Add .gitlab-ci.yml

This commit is contained in:
Jens Noack 2018-11-12 14:32:47 +01:00
parent c5188a4b8d
commit 7b2fac5356

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/doxygen
image: alpine
pages:
script:
- apk update && apk add doxygen
- doxygen Doku/Doxygen/Doxyfile
- mv Doku/Doxygen/html/ public/
artifacts:
paths:
- public
only:
- master