Skip to content

Commit 054d53b

Browse files
fix(cd) check all services to publish instead of just the ones changed in last commit (#5171)
STACKITSDK-237
1 parent c3b04bc commit 054d53b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-service-tags.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77
# in the following format e.g. v0.3.0
88

99
# Check all version files which have changed
10-
for file in $(git diff --name-only HEAD~1..HEAD | grep -E "(^services/[^/]+/VERSION$|^core/VERSION$)"); do
10+
for file in $(find . -print | sed 's|^./||' | grep -E "(^services/[^/]+/VERSION$|^core/VERSION$)"); do
1111

1212
# Extract the current version and build the expected tag
1313
dirpath=$(dirname "$file")

0 commit comments

Comments
 (0)