summaryrefslogtreecommitdiff
path: root/docs/.gitlab-ci.yml
blob: 85c85c2a46b852410152118b055034638b224357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: alpine

pages:
  script:
  - apk --no-cache add py2-pip python-dev
  - pip install sphinx
  - apk --no-cache add make
  - make html
  - mv _build/html/ public/
  artifacts:
    paths:
    - public
  only:
  - master