multi-user/.gitlab/ci/doc.gitlab-ci.yml

17 lines
248 B
YAML
Raw Normal View History

pages:
stage: doc
2021-03-02 09:08:39 +00:00
needs: ["deploy"]
image: python
script:
2021-03-02 12:46:26 +00:00
- pip install -U sphinx sphinx_rtd_theme sphinx-material
- sphinx-build -b html ./docs public
artifacts:
paths:
- public
2021-03-02 10:18:11 +01:00
only:
refs:
- master
- develop