From dbea14888e5f2f7dca29da13416c8d9a17005682 Mon Sep 17 00:00:00 2001 From: Kapitan Date: Tue, 25 Feb 2025 00:30:45 +0100 Subject: [PATCH] Fix twine auth --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 76103f7..c80bb60 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,7 @@ pipeline { stage('Publish to Local PyPI') { steps { - sh '. venv/bin/activate && twine upload --repository-url http://localhost:8090/ dist/*' + sh '. venv/bin/activate && twine upload --repository-url http://localhost:8090/ -u admin -p admin dist/*' } } }