From 630dc41bb1e99d90ff095f31f1336b0f86508c36 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 5 Aug 2022 10:46:10 +0200 Subject: [PATCH] Update GitLab CI script --- .gitlab-ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c087475..77c67b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,12 +3,11 @@ pypi: - cp /keys/.pypirc ~/.pypirc - virtualenv env - source env/bin/activate - - XDG_CACHE_HOME=/cache pip3 install -U pip setuptools wheel + - XDG_CACHE_HOME=/cache pip3 install -U pip setuptools wheel twine - XDG_CACHE_HOME=/cache pip3 install -r requirements_dev.txt - - python setup.py sdist develop - - python setup.py sdist clean - - python setup.py sdist upload - - python setup.py bdist_wheel upload + - python setup.py develop + - python setup.py sdist bdist_wheel + - twine upload dist/* tags: - python3 only: -- 2.47.3