python/.woodpecker/release.yml
RealStickman dd8da23874
Some checks failed
ci/woodpecker/tag/linting Pipeline failed
ci/woodpecker/tag/release Pipeline was successful
It was probably missing URLs
2022-09-12 19:29:46 +02:00

12 lines
339 B
YAML

pipeline:
build:
image: python:latest
when:
event: tag
secrets: [ twine_username, twine_password ]
commands:
- python --version
- pip install -U build twine --quiet
- python -m build
- python -m twine upload --skip-existing --repository testpypi -u $TWINE_USERNAME -p $TWINE_PASSWORD dist/*