From 14873598c8561b505dc4100eb261e263b96e0d98 Mon Sep 17 00:00:00 2001 From: Lucidiot Date: Thu, 25 Oct 2018 17:51:30 +0200 Subject: [PATCH] Add GitLab CI job --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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