tmp-gitea/.woodpecker.yml

20 lines
349 B
YAML
Raw Normal View History

2022-10-27 22:03:16 +05:30
pipeline:
build:
2022-10-27 22:36:26 +05:30
image: python:3.11.0-bullseye
2022-10-27 22:03:16 +05:30
when:
event: [push, pull_request, tag, deployment]
commands:
2022-10-27 22:15:12 +05:30
- make env
- make
2022-10-27 22:03:16 +05:30
publish:
2022-10-27 22:36:26 +05:30
image: python:3.11.0-bullseye
2022-10-27 22:03:16 +05:30
when:
event: push
branch: main
commands:
- pwd
- pwd
2022-10-27 22:40:44 +05:30
- make ci-deploy
2022-10-27 22:03:16 +05:30
secrets: [repo_write_deploy_key]