Add Mkdocs API site (#8133)

* Add MkDocs API site
This commit is contained in:
Paul Ouellette
2019-04-12 08:29:29 -04:00
committed by Loïc Blot
parent 22ad820aa4
commit bb7afd306a
9 changed files with 192 additions and 5 deletions

View File

@@ -322,3 +322,19 @@ package:docker:
- docker push ${CONTAINER_IMAGE}/server:$CI_COMMIT_SHA
- docker push ${CONTAINER_IMAGE}/server:$CI_COMMIT_REF_NAME
- docker push ${CONTAINER_IMAGE}/server:latest
pages:
stage: deploy
image: python:3.7
before_script:
- pip install pip==18.1
- pip install git+https://github.com/Python-Markdown/markdown.git
- pip install git+https://github.com/mkdocs/mkdocs.git
- pip install pygments
script:
- cd doc/mkdocs && ./build.sh
artifacts:
paths:
- public
only:
- master