python/.woodpecker/deploy.yml
RealStickman e15c733d15
Some checks failed
ci/woodpecker/tag/linting Pipeline failed
ci/woodpecker/tag/build Pipeline was successful
ci/woodpecker/tag/deploy Pipeline failed
Update 0.0.6
2022-09-12 19:17:16 +02:00

15 lines
347 B
YAML

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