.gitlab-ci.yml 238 B

123456789101112
  1. image: python:3.8
  2. pages:
  3. stage: deploy
  4. only:
  5. - master
  6. script:
  7. - python3 -m venv env
  8. - env/bin/pip install --upgrade -r requirements.txt
  9. - env/bin/mkdocs build --site-dir public
  10. artifacts:
  11. paths:
  12. - public