2022-10-27 22:03:16 +05:30
|
|
|
pipeline:
|
|
|
|
build:
|
|
|
|
image: python
|
|
|
|
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:
|
|
|
|
image: python
|
|
|
|
when:
|
|
|
|
event: push
|
|
|
|
branch: main
|
|
|
|
commands:
|
|
|
|
- cd website/ && make ci-deploy
|
|
|
|
secrets: [repo_write_deploy_key]
|