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 <rjshrjndrn@gmail.com>
This commit is contained in:
parent
029376c3e4
commit
15829d865e
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release-deployment.yaml
vendored
2
.github/workflows/release-deployment.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue