15 lines
313 B
YAML
15 lines
313 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 https://git.ruiz.wang/api/packages/Public/pypi dist/*
|
|
|
|
only:
|
|
- tags
|