fix(api): verify production deploy image readback
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 0s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Failing after 39s
CD Pipeline / build-and-deploy (push) Has been skipped
CD Pipeline / post-deploy-checks (push) Has been skipped

This commit is contained in:
Your Name
2026-06-30 08:25:39 +08:00
parent ff7febbf62
commit b3183582a6
7 changed files with 254 additions and 61 deletions

View File

@@ -311,6 +311,18 @@ def build_delivery_closure_workbench(
)
is True
),
"desired_main_api_image_tag_short_sha": str(
production_deploy_readback.get(
"desired_main_api_image_tag_short_sha"
)
or ""
),
"desired_main_api_image_tag_readback_status": str(
production_deploy_readback.get(
"desired_main_api_image_tag_readback_status"
)
or ""
),
"production_image_tag_matches_main": production_deploy_readback.get(
"production_image_tag_matches_main"
)
@@ -1673,6 +1685,16 @@ def build_delivery_closure_workbench(
)
is True
),
"production_deploy_desired_main_api_image_tag_short_sha": str(
production_deploy_readback.get("desired_main_api_image_tag_short_sha")
or ""
),
"production_deploy_desired_main_api_image_tag_readback_status": str(
production_deploy_readback.get(
"desired_main_api_image_tag_readback_status"
)
or ""
),
"production_deploy_governance_fields_present": production_deploy_rollups.get(
"production_governance_fields_present"
)