2
0
mirror of https://framagit.org/kyodev/kyopages.git synced 2018-11-08 04:49:35 +01:00
kyopages/.gitlab-ci.yml
2017-05-26 16:12:36 +02:00

18 lines
316 B
YAML

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