python/.woodpecker/build.yml
RealStickman 75b6193965
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/linting Pipeline failed
ci/woodpecker/push/deploy Pipeline failed
More indenting
2022-09-12 17:34:52 +02:00

15 lines
290 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]