15 lines
297 B
YAML
15 lines
297 B
YAML
image: python:3.8
|
|
|
|
stages:
|
|
- publish
|
|
|
|
pack:
|
|
stage: publish
|
|
script:
|
|
- pip install twine setuptools
|
|
- python setup.py sdist bdist_wheel
|
|
- python -m twine upload -u iruiz --repository-url https://git.ruiz.wang/api/packages/Public/pypi dist/*
|
|
|
|
only:
|
|
- tags
|