From 7e07ce4c212a25340a2f50b08815ab618bdfe21b Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Wed, 25 Sep 2019 10:47:27 +0200 Subject: [PATCH] added pypi password environment --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 40c43df..e446ec5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,8 @@ image: python:3.7-stretch stages: - - style - - tests + #- style + #- tests - pypi_upload before_script: @@ -29,6 +29,6 @@ pypi_test: script: - pyenv local $(latest_python 3.7) - python setup.py sdist - - twine upload -u openbis-team -p 4z2-3oZ-rFK-YNh --repository-url https://test.pypi.org/legacy/ dist/* + - twine upload -u openbis-team -p $PYPI_PASSWORD --repository-url https://test.pypi.org/legacy/ dist/* when: manual stage: pypi_upload -- GitLab