webappify/.woodpecker.yml
Raoul Snyman 8cb267f8fa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Add a git pull to see if that helps
2022-06-13 08:00:11 -07:00

29 lines
604 B
YAML

pipeline:
# tests:
# image: python:3
# commands:
# - pip install -U pip wheel pytest PyQt5 PyQtWebEngine
# - pytest
# when:
# branch: master
build:
image: python:3
commands:
- git fetch origin master
- pip install -U pip wheel hatch hatch-vcs
- hatch build
when:
branch: master
release:
image: python:3
commands:
- git fetch origin master
- pip install -U pip wheel hatch hatch-vcs
- hatch build
- hatch publish
secrets:
- hatch_pypi_user
- hatch_pypi_auth
when:
event: tag