X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=.gitlab-ci.yml;h=dbc532090cd71d1c22aa882b671e225c69c86491;hb=43db70f480acc6e1cdd7c4b648877301de1e75c4;hp=b957fdb32707a4a119f2a4509a985a3bd9b06f00;hpb=1a51455b9ece61124b247d9b3057fa4d22cd7893;p=oweals%2Fminetest.git 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