Update .drone.yml
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
first_admin 2024-08-22 06:01:14 +00:00
parent 447fb07a4b
commit c1cccce7a5

View File

@ -12,16 +12,22 @@ steps:
image: alpine image: alpine
commands: commands:
- echo "Building..." - echo "Building..."
depends_on:
- test
- name: deploy-staging - name: deploy-staging
image: alpine image: alpine
commands: commands:
- echo "Deploying to stage..." - echo "Deploying to stage..."
depends_on:
- build
- name: approval - name: approval
image: alpine image: alpine
commands: commands:
- echo "Awaiting manual approval for production deployment." - echo "Awaiting manual approval for production deployment."
depends_on:
- deploy-staging
- name: deploy-production - name: deploy-production
image: alpine image: alpine