From 08e074d92a2c4941def1c46fa867efe3354c362c Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 6 Mar 2025 16:12:55 +0100 Subject: [PATCH] fix(ci): add missing loop closures in deploy workflow Add the required 'done' keywords at the end of for loops in the Kubernetes deployment steps for both EE and FOSS clusters to ensure proper script execution. Signed-off-by: rjshrjndrn --- .github/workflows/release-deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-deployment.yaml b/.github/workflows/release-deployment.yaml index f718c3ef3..d35d29dde 100644 --- a/.github/workflows/release-deployment.yaml +++ b/.github/workflows/release-deployment.yaml @@ -81,6 +81,7 @@ jobs: SERVICE=$(echo $SERVICE | xargs) # Trim whitespace echo "Deploying $SERVICE to EE cluster with image tag: ${IMAGE_TAG}" kubectl set image deployment/$SERVICE-openreplay -n app $SERVICE=${IMAGE_REGISTRY_URL}/$SERVICE:${IMAGE_TAG}-ee + done - uses: azure/k8s-set-context@v1 name: Using foss release cluster @@ -97,3 +98,4 @@ jobs: echo "Deploying $SERVICE to FOSS cluster with image tag: ${IMAGE_TAG}" echo "Deploying $SERVICE to FOSS cluster with image tag: ${IMAGE_TAG}" kubectl set image deployment/$SERVICE-openreplay -n app $SERVICE=${IMAGE_REGISTRY_URL}/$SERVICE:${IMAGE_TAG} + done