15 lines
319 B
YAML
15 lines
319 B
YAML
image: python:3.8
|
|
|
|
stages:
|
|
- publish
|
|
|
|
pack:
|
|
stage: publish
|
|
script:
|
|
- pip install twine
|
|
- python setup.py sdist bdist_wheel
|
|
- python -m twine upload -u gitlab-ci-token -p $CI_JOB_TOKEN --repository-url $CI_API_V4_URL/projects/$CI_PROJECT_ID/packages/pypi dist/*
|
|
|
|
only:
|
|
- tags
|