17 lines
338 B
YAML
17 lines
338 B
YAML
pipeline:
|
|
build:
|
|
image: python
|
|
when:
|
|
event: [push, pull_request, tag, deployment]
|
|
commands:
|
|
- cd website/ && make env
|
|
- cd website/ && make
|
|
|
|
publish:
|
|
image: python
|
|
when:
|
|
event: push
|
|
branch: main
|
|
commands:
|
|
- cd website/ && make ci-deploy
|
|
secrets: [repo_write_deploy_key]
|