From bb7afd306add29188358f3dafcf0c13f669210d1 Mon Sep 17 00:00:00 2001 From: Paul Ouellette Date: Fri, 12 Apr 2019 08:29:29 -0400 Subject: Add Mkdocs API site (#8133) * Add MkDocs API site --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b957fdb32..dbc532090 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 -- cgit v1.2.3