gitea-open-letter/.woodpecker.yml

19 wiersze
359 B
YAML

pipeline:
build:
image: python:3.11.0-bullseye
when:
event: [push, pull_request, tag, deployment]
commands:
- cd website
- make env
- make
publish:
image: python:3.11.0-bullseye
when:
event: push
branch: main
commands:
- cd website/ && make ci-deploy
secrets: [repo_write_deploy_key]