Skip to content
.gitlab-ci.yml 257 B
Newer Older
Michael Krause's avatar
Michael Krause committed
image: alpine

pages:
  script:
  - apk --no-cache add py2-pip python-dev
  - pip install sphinx sphinx_rtd_theme
  - apk --no-cache add make
  - make html
Michael Krause's avatar
Michael Krause committed
  - mkdir public
Michael Krause's avatar
Michael Krause committed
  - mv _build/html/ public/
  artifacts:
    paths:
    - public
  only:
Michael Krause's avatar
Michael Krause committed
  - public