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/**