python/.woodpecker/build.yml
2022-09-12 17:33:57 +02:00

15 lines
284 B
YAML

pipeline:
build:
image: python:latest
commands:
- python --version
- pip install -U virtualenv --quiet
- virtualenv venv
- source venv/bin/activate
- pip install -U build --quiet
- build
when:
event: tag
branch: [main, master]