multi-user/.gitlab/ci/doc.gitlab-ci.yml
2021-03-02 12:56:12 +00:00

17 lines
248 B
YAML

pages:
stage: doc
needs: ["deploy"]
image: python
script:
- pip install -U sphinx sphinx_rtd_theme sphinx-material
- sphinx-build -b html ./docs public
artifacts:
paths:
- public
only:
refs:
- master
- develop