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
2 changes: 1 addition & 1 deletion scripts/cd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down