From 16a5306475f2ff840b0bb51d90e059b856d45c0a Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Tue, 11 May 2021 15:47:02 +0530 Subject: [PATCH] ci(workers): fix ee build Signed-off-by: Rajesh Rajendran --- .github/workflows/workers.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workers.yaml b/.github/workflows/workers.yaml index ef5e4f5b9..9055a7211 100644 --- a/.github/workflows/workers.yaml +++ b/.github/workflows/workers.yaml @@ -47,7 +47,7 @@ jobs: # # Getting the images to build # - git diff --name-only HEAD HEAD~1 | grep backend/services | cut -d '/' -f3 | uniq > backend/images_to_build.txt + git diff --name-only HEAD HEAD~1 | grep backend/services | grep -vE ^ee/ | cut -d '/' -f3 | uniq > backend/images_to_build.txt [[ $(cat backend/images_to_build.txt) != "" ]] || (echo "Nothing to build here"; exit 0) # # Pushing image to registry