.gitlab-ci.yml 314 B

1234567891011121314151617
  1. image: python:alpine
  2. before_script:
  3. - pip install mkdocs
  4. # Add your custom theme if not inside a theme_dir
  5. # (https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes)
  6. # - pip install mkdocs-material
  7. pages:
  8. script:
  9. - mkdocs build
  10. - mv site public
  11. artifacts:
  12. paths:
  13. - public
  14. only:
  15. - master