Add .gitlab-ci.yml
This commit is contained in:
parent
c5188a4b8d
commit
7b2fac5356
1 changed files with 14 additions and 0 deletions
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal 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
|
Loading…
Reference in a new issue