summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 0d70a263012c493ea86bcecac5e31fb84e9d8dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pages:
  image: alpine
  script:
  - apk --no-cache add py2-pip python-dev
  - pip install sphinx
  - pip install Flask-Sphinx-Themes
  - cd docs
  - ./build-html.sh
  - mv _build/html/ ../public/
  artifacts:
    paths:
    - public
  only:
    refs:
      - master
    changes:
      - docs/**