diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77646b1..f7dbd75 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,3 +55,18 @@ deploy-testpypi: - python setup.py sdist bdist_wheel - twine upload dist/* -r testpypi +pages: + stage: deploy + when: manual + only: + - master@Lucidiot/pyurbantz + artifacts: + paths: + - public + + before_script: + - pip install .[dev] + script: + - cd docs + - make html + - mv _build/html ../public