Add .gitlab-ci.yml

This commit is contained in:
AMRowsell 2019-01-22 01:23:51 +00:00
commit b253769f9f

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 Doxyfile
- mv docs/html/ public/
artifacts:
paths:
- public
only:
- master