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

pages:
  script:
Michael Krause's avatar
Michael Krause committed
  - apk --no-cache add py3-pip python3-dev
Michael Krause's avatar
Michael Krause committed
  - pip install sphinx sphinx_rtd_theme
  - apk --no-cache add make
  - make html
  - make html  # fix some toc/include related warnings
Michael Krause's avatar
Michael Krause committed
  - mkdir public
Michael Krause's avatar
Michael Krause committed
  - mv _build/html/* public/
Michael Krause's avatar
Michael Krause committed
  artifacts:
    paths:
    - public
  only:
Michael Krause's avatar
Michael Krause committed
  - main