Skip to content
Snippets Groups Projects
.gitlab-ci.yml 190 B
Newer Older
Jeremy Commins's avatar
Jeremy Commins committed
image: alpine

pages:
  script:
  - pip install -r requirements.txt
  - pip install sphinx
  - make html
  - mv _build/html/ public/
  artifacts:
    paths:
    - public
  only:
  - master