Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/update-service-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ 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 VERSION); do
for file in $(git diff --name-only HEAD~1..HEAD | grep -E "(^services/[^/]+/VERSION$|^core/VERSION$)"); do

# Extract the current version and build the expected tag
dirpath=$(dirname $file)
version_path="$dirpath/VERSION"
Expand Down
Loading