documentation/.gitlab-ci.yml
Raoul Snyman 2b6f8b15af
Deploy documentation to GitLab Pages
- Set up .gitlab-ci.yml to deploy documentation to GitLab pages
- Make some minor fixes/changes for git migration
2019-04-16 14:14:06 -07:00

15 lines
252 B
YAML

image: alpine
pages:
script:
- apk --no-cache add make py3-setuptools python3-dev
- python3 -m pip install sphinx sphinx_rtd_theme
- cd manual
- make html
- mv build/html/ ../public/
artifacts:
paths:
- public
only:
- master