summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 1aee0c1fc4c3a58e3ded9bdfe7ee249528b99c51 (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
  - cd docs
  - apk --no-cache add make
  - make html
  - mv _build/html/ ../public/
  artifacts:
    paths:
    - public
  only:
    refs:
      - master
    changes:
      - docs/**