From 3f1d5c481e61dbf007e81c405dd6da97290b0dff Mon Sep 17 00:00:00 2001 From: Janis Born Date: Tue, 20 Mar 2018 11:50:11 +0100 Subject: [PATCH] fix deploy paths --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca10a81..7f3fa8b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -87,7 +87,8 @@ deploy-wheel: - virtualenv --clear -p python3.5 . - source bin/activate - python setup.py bdist_wheel --universal - - cp dist/*.whl release + - mkdir -p release + - cp dist/*.whl release/ artifacts: paths: - release/*.whl @@ -104,7 +105,7 @@ deploy-documentation: - source bin/activate - pip install -e . - pip install sphinx sphinx_rtd_theme - - mkdir documentation + - mkdir -p documentation - cd docs - make html - cp -r build/html/* ../documentation -- GitLab