tmp-gitea/.woodpecker.yml

19 lines
359 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
- cd website
- 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:
- cd website/ && make ci-deploy
secrets: [repo_write_deploy_key]