python/.woodpecker/deploy.yml
RealStickman 8c71057fd1
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
ci/woodpecker/push/linting Pipeline was successful
Remove venv stuff
2022-09-12 17:52:11 +02:00

14 lines
304 B
YAML

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