python/.woodpecker/deploy.yml
RealStickman f8e352cc07
Some checks failed
ci/woodpecker/tag/linting Pipeline failed
ci/woodpecker/tag/build Pipeline was successful
ci/woodpecker/tag/deploy Pipeline failed
Fix build and deploy. Update 0.0.5
2022-09-12 19:15:18 +02:00

14 lines
333 B
YAML

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