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

17 lines
248 B
YAML
Raw Permalink Normal View History

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