From 79e107bdcd03a6964d450c1bb6328ae95726e8df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Tue, 3 Oct 2017 17:13:57 +0200 Subject: [PATCH] Fixed mistake in .pypirc --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f36f1ba..147e44d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,7 +70,7 @@ deploy_pypi: script: # Configure the PyPI credentials, then push the package, and cleanup the creds. - echo "[server-login]" >> ~/.pypirc - echo "repository=https://upload.pypi.org/legacy/" >> ~/.pypirc - - echo "password=" ${PYPI_PASSWORD} >> ~/.pypirc + - echo "username=" ${PYPI_USER} >> ~/.pypirc - echo "password=" ${PYPI_PASSWORD} >> ~/.pypirc - make pip_upload - echo "" > ~/.pypirc && rm ~/.pypirc # If the above fails, this won't run.