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