Update .gitlab-ci.yml
[kohadocs.git] / .gitlab-ci.yml
1 image: debian:unstable
2
3 pages:
4   script:
5   - apt-get update
6   - apt-get install python3-sphinx  python3-sphinxcontrib.spelling 
7   - cd en
8   - make html
9   - mv _build/html/ public/
10   artifacts:
11     paths:
12     - public
13   only:
14   - master