Use a new MkDocs site

This commit is contained in:
Achilleas Pipinellis
2017-02-28 17:15:29 +01:00
parent 4536498c46
commit 48f7b16f3d
22 changed files with 75 additions and 2569 deletions

17
.gitlab-ci.yml Normal file
View File

@ -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