diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c53a407 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: python:alpine + +before_script: + - pip install mkdocs + ## Add your custom theme if not inside a theme_dir + ## (https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes) + # - pip install mkdocs-material + +pages: + script: + - mkdocs build + - mv site public + artifacts: + paths: + - public + only: + - master