Update .gitlab-ci.yml file

This commit is contained in:
Steffen Illium
2023-11-11 16:04:55 +01:00
parent 93bc859161
commit c17da78440

View File

@ -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."