python/.woodpecker/release.yml
RealStickman edf291a9a3
Some checks failed
ci/woodpecker/tag/linting Pipeline failed
ci/woodpecker/tag/release Pipeline failed
Update 0.0.7. Build and deploy in one
2022-09-12 19:21:40 +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/*