forked from bellwether/minerva
7 lines
277 B
YAML
7 lines
277 B
YAML
image: python:latest
|
|
|
|
run:
|
|
script:
|
|
- pip install build twine
|
|
- python -m build
|
|
- TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python -m twine upload --skip-existing --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
|