From c4a158f039771844e23e5e2a42847a23c0001af0 Mon Sep 17 00:00:00 2001 From: Michael Leer Date: Tue, 14 Apr 2026 14:08:29 +0100 Subject: [PATCH] fix: pass short service_name to action-ado-deploy to match helm release limit The repo name service-cp-crime-hearing-results-document-subscription is 54 chars, one over Helm's 53-char release name limit. Hardcode service_name to the short form hearing-results-document-subscription so the deploy action writes to the correct key in cp-vp-aks-deploy/vp-config/services_values.yml. --- .github/workflows/ci-build-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build-publish.yml b/.github/workflows/ci-build-publish.yml index c2494bde..c32f834f 100644 --- a/.github/workflows/ci-build-publish.yml +++ b/.github/workflows/ci-build-publish.yml @@ -340,7 +340,7 @@ jobs: - name: Deploy via ADO pipeline uses: hmcts/action-ado-deploy@v1 with: - service_name: ${{ needs.build.outputs.repo_name }} + service_name: hearing-results-document-subscription image_tag: ${{ needs.version.outputs.artefact_version }} tag_suffix: ${{ steps.date.outputs.suffix }} app_id: ${{ secrets.DEPLOYMENT_APP_ID }}