diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30f915ebd2abcab5ecbe54e6ab8253f2c821548b..b985a8efac2db0fa74efac28acb82fc939e9e27f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -229,3 +229,22 @@ deploy-2.7-macos: artifacts: paths: - release/*.whl + +deploy-documentation: + stage: + deploy + tags: + - Linux + dependencies: + - build-3.5-linux + script: + - virtualenv --clear -p python3.5 . + - source bin/activate + - pip install dist3/*.whl + - mkdir documentation + - cd docs + - make html + - cp -r _build/html/* ../documentation + artifacts: + paths: + - documentation/