From e2f4dcb27463d19d5e9d0623315aee675455ed12 Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Wed, 4 Mar 2026 14:22:15 +0100 Subject: [PATCH] fix(cd) check all services to publish instead of just the ones changed in last commit STACKITSDK-237 --- scripts/cd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cd.sh b/scripts/cd.sh index b93fc66d..a1cccbd7 100755 --- a/scripts/cd.sh +++ b/scripts/cd.sh @@ -4,7 +4,7 @@ set -e # Check all pyproject.toml files that have changed -for file in $(git diff --name-only HEAD~1..HEAD | grep pyproject.toml); do +for file in $(find . -print | sed 's|^./||' | grep -E "(^services/[^/]+/pyproject.toml$|^core/pyproject.toml$)"); do # Extract the current version and build the expected tag dirpath=$(dirname $file) expected_tag=$(scripts/helper.sh $dirpath --path-version)