ci: Make production deployment verification automatic

- Change verify_prod_deployment from 'when: manual' to 'when: on_success'
- Production deployment verification will now run automatically on master branch
- Ensures production deployments are verified just like dev deployments
- Maintains safety with allow_failure: false
This commit is contained in:
Oliver Falk
2025-10-18 13:58:47 +02:00
parent 8e556bb14d
commit f8f8beb52e

View File

@@ -135,7 +135,7 @@ verify_prod_deployment:
image: python:3.11-alpine
only:
- master
when: manual
when: on_success
variables:
PROD_URL: "https://libravatar.org"
MAX_RETRIES: 10