8 lines
186 B
YAML
8 lines
186 B
YAML
image: python:latest
|
|
|
|
run:
|
|
script:
|
|
- pip install build twine
|
|
- python -m build
|
|
- TWINE_PASSWORD=$PYPI_PASSWORD TWINE_USERNAME=$PYPI_USERNAME python3 -m twine upload dist/*
|