manual-approval/.drone.yml
first_admin 46a4036acb
All checks were successful
continuous-integration/drone Build is passing
Update .drone.yml
2024-08-22 05:41:40 +00:00

42 lines
719 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: alpine
commands:
- echo "Testing..."
- name: build
image: alpine
commands:
- echo "Building..."
- name: deploy-staging
image: alpine
commands:
- echo "Deploying to stage..."
- name: approval
image: alpine
commands:
- echo "Awaiting manual approval for production deployment."
# when:
# # event:
# # - push
# status:
# - success
- name: deploy-production
image: alpine
commands:
- echo "Deploying to production..."
# when:
# # event:
# # - push
# status:
# - success
depends_on:
- approval