manual-approval/.drone.yml

38 lines
649 B
YAML
Raw Normal View History

2024-08-21 05:29:40 +00:00
kind: pipeline
type: docker
2024-08-22 05:09:36 +00:00
name: default
2024-08-21 05:29:40 +00:00
steps:
2024-08-22 05:09:36 +00:00
- name: test
2024-08-21 05:29:40 +00:00
image: alpine
commands:
2024-08-22 05:09:36 +00:00
- echo "Testing..."
- name: build
image: alpine
commands:
- echo "Building..."
2024-08-22 06:01:14 +00:00
depends_on:
- test
2024-08-22 05:09:36 +00:00
- name: deploy-staging
image: alpine
commands:
- echo "Deploying to stage..."
2024-08-22 06:01:14 +00:00
depends_on:
- build
2024-08-22 05:09:36 +00:00
- name: approval
image: alpine
commands:
- echo "Awaiting manual approval for production deployment."
2024-08-22 06:01:14 +00:00
depends_on:
- deploy-staging
2024-08-22 05:09:36 +00:00
- name: deploy-production
image: alpine
commands:
- echo "Deploying to production..."
2024-08-22 05:35:01 +00:00
depends_on:
- approval