term-render/.drone.yml
Yandrik 9ea46e0398
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/staging Build is passing
ci: add some ci stages (promote)
2024-04-24 11:14:56 +02:00

28 lines
500 B
YAML

kind: pipeline
name: default
steps:
- name: test
image: rust:1.77.2-slim
commands:
- cargo build --verbose --all
- cargo test --verbose --all
- name: deploy
image: rust:1.77.2-slim
commands:
- echo "deploying staging..."
when:
event:
include: [ promote ]
target:
include: [ staging ]
- name: deploy_prod
image: rust:1.77.2-slim
commands:
- echo "deploying production..."
when:
event:
include: [ promote ]
target:
include: [ prod ]