mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-28 15:31:47 +02:00
17 lines
273 B
YAML
17 lines
273 B
YAML
image: alpine
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- apk update && apk add doxygen graphviz ttf-freefont && apk add make
|
|
- doxygen doxygen.txt
|
|
- mkdir public
|
|
- cp -r docs/html public
|
|
|
|
#- mv docs/html/ public/
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- release
|