image: alpine test: script: - apk --no-cache add python3 py3-pip - pip3 install sphinx sphinx-rtd-theme - sphinx-build -W -b html source build/html/en pages: script: - apk --no-cache add python3 py3-pip - pip3 install sphinx sphinx-rtd-theme - sphinx-build -b html source build/html/en - sphinx-build -b html -D language=de source build/html/de - mv build/html/ public/ - mv source/_static/redirect/index.html public/index.html artifacts: paths: - public only: - main