Skip to content

Commit 3950a88

Browse files
committed
fix(ci): use wildcard for java-shared-config parent exclusion
1 parent 5f1d9a5 commit 3950a88

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

generation/check_existing_release_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ for pom_file in $(find . -maxdepth 3 -name pom.xml|sort --dictionary-order); do
4747
# Exclude java-vertexai because it has been archived and replaced with a dummy POM.
4848
# We do not plan to release any new versions for it, so we don't want to check if its
4949
# version (which already exists) is a duplicate.
50-
if [[ "${pom_file}" == *samples* || "${pom_file}" == *showcase* || "${pom_file}" == *coverage-report* || "${pom_file}" == *sdk-platform-java/pom.xml || "${pom_file}" == *java-vertexai* || "${pom_file}" == *storage-shared-benchmarking* || "${pom_file}" == *java-bigtable/test-proxy* || "${pom_file}" == "./java-shared-config/pom.xml" ]]; then
50+
if [[ "${pom_file}" == *samples* || "${pom_file}" == *showcase* || "${pom_file}" == *coverage-report* || "${pom_file}" == *sdk-platform-java/pom.xml || "${pom_file}" == *java-vertexai* || "${pom_file}" == *storage-shared-benchmarking* || "${pom_file}" == *java-bigtable/test-proxy* || ( "${pom_file}" == */java-shared-config/pom.xml && "${pom_file}" != */java-shared-config/java-shared-config/pom.xml ) ]]; then
5151
continue
5252
fi
5353
find_existing_version_pom "${pom_file}"

0 commit comments

Comments
 (0)