From c17da784403e091e034fe6c309f1b1d6c8d07fc2 Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Sat, 11 Nov 2023 16:04:55 +0100 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3985c4c..2f8ab20 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,8 +14,8 @@ build-job: # This job runs in the build stage, which runs first. image: python:slim script: - echo "Compiling the code..." - - pip install -U twine + - pip install twine --upgrade - python setup.py sdist - echo "Compile complete." - - twine upload dist/* --username $USER_NAME --password $API_KEY $artifact + - twine upload dist/* --username $USER_NAME --password $API_KEY --repository marl-factory-grid - echo "Upload complete."