From ecd33e87bdebdf76afbb0e1ac9654f63fdf62913 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 6 Mar 2025 16:15:30 +0100 Subject: [PATCH] fix(workflow): move wait outside build services loop The wait command was placed inside the service loop, causing the workflow to wait after each individual service build. Moving it outside ensures all service builds run in parallel before proceeding to the next step. Signed-off-by: rjshrjndrn --- .github/workflows/release-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-deployment.yaml b/.github/workflows/release-deployment.yaml index d35d29dde..cd9ffb0ed 100644 --- a/.github/workflows/release-deployment.yaml +++ b/.github/workflows/release-deployment.yaml @@ -64,8 +64,8 @@ jobs: echo IMAGE_TAG=${IMAGE_TAG}-ee DOCKER_RUNTIME="depot" DOCKER_BUILD_ARGS="--push" ARCH=amd64 DOCKER_REPO=$IMAGE_REGISTRY_URL PUSH_IMAGE=0 bash ${BUILD_SCRIPT_NAME} $ee_build_args IMAGE_TAG=${IMAGE_TAG}-ee DOCKER_RUNTIME="depot" DOCKER_BUILD_ARGS="--push" ARCH=amd64 DOCKER_REPO=$IMAGE_REGISTRY_URL PUSH_IMAGE=0 bash ${BUILD_SCRIPT_NAME} $ee_build_args }& - wait done + wait - uses: azure/k8s-set-context@v1 name: Using ee release cluster