18 lines
359 B
YAML
18 lines
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]
|