From 38db70eecd3629ff65fedcc8e4bd2203cf354bb5 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Fri, 2 Sep 2022 16:01:48 +0200 Subject: [PATCH] chore(build): api build script is exiting the flow. so making it as last step. Signed-off-by: rjshrjndrn --- scripts/helmcharts/build_deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/helmcharts/build_deploy.sh b/scripts/helmcharts/build_deploy.sh index 4825f9866..c3fd89c0e 100644 --- a/scripts/helmcharts/build_deploy.sh +++ b/scripts/helmcharts/build_deploy.sh @@ -11,9 +11,7 @@ echo $DOCKER_REPO exit 1 } || { docker login $DOCKER_REPO - cd ../../api - PUSH_IMAGE=1 bash build.sh $@ - cd ../backend + cd ../../backend PUSH_IMAGE=1 bash build.sh $@ cd ../utilities PUSH_IMAGE=1 bash build.sh $@ @@ -21,4 +19,6 @@ echo $DOCKER_REPO PUSH_IMAGE=1 bash build.sh $@ cd ../frontend PUSH_IMAGE=1 bash build.sh $@ + cd ../api + PUSH_IMAGE=1 bash build.sh $@ }