From 454532a0e072d1cea957ca12adcad0ed6369a4e0 Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Wed, 4 Mar 2026 14:26:59 +0100 Subject: [PATCH] fix(cd) check all services to publish instead of just the ones changed in last commit STACKITSDK-237 --- scripts/update-service-tags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-service-tags.sh b/scripts/update-service-tags.sh index 04ad8fe16..c1bd684e8 100755 --- a/scripts/update-service-tags.sh +++ b/scripts/update-service-tags.sh @@ -7,7 +7,7 @@ set -e # in the following format e.g. v0.3.0 # Check all version files which have changed -for file in $(git diff --name-only HEAD~1..HEAD | grep -E "(^services/[^/]+/VERSION$|^core/VERSION$)"); do +for file in $(find . -print | sed 's|^./||' | grep -E "(^services/[^/]+/VERSION$|^core/VERSION$)"); do # Extract the current version and build the expected tag dirpath=$(dirname "$file")