gitea-open-letter/.woodpecker.yml

20 wiersze
349 B
YAML

2022-10-27 16:33:16 +00:00
pipeline:
build:
2022-10-27 17:06:26 +00:00
image: python:3.11.0-bullseye
2022-10-27 16:33:16 +00:00
when:
event: [push, pull_request, tag, deployment]
commands:
2022-10-27 16:45:12 +00:00
- make env
- make
2022-10-27 16:33:16 +00:00
publish:
2022-10-27 17:06:26 +00:00
image: python:3.11.0-bullseye
2022-10-27 16:33:16 +00:00
when:
event: push
branch: main
commands:
- pwd
- pwd
2022-10-27 17:10:44 +00:00
- make ci-deploy
2022-10-27 16:33:16 +00:00
secrets: [repo_write_deploy_key]