This commit is contained in:
2019-11-19 09:59:37 +01:00
parent ed59b6f0cf
commit 9677667ea4

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