From 6af9a9af15011cfbf7c31bd34e6e5f9696c250cc Mon Sep 17 00:00:00 2001 From: Min Zhu Date: Tue, 16 Jan 2024 14:50:23 -0500 Subject: [PATCH] fix: specify artifact_id to replace explicitly. (#6361) This change should fix the issue that 4 artifacts are mapped to service "bigstore". --- .kokoro/nightly/create-versions-csv.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.kokoro/nightly/create-versions-csv.sh b/.kokoro/nightly/create-versions-csv.sh index 87c67c9ec7c8..d9be497ae639 100755 --- a/.kokoro/nightly/create-versions-csv.sh +++ b/.kokoro/nightly/create-versions-csv.sh @@ -38,9 +38,12 @@ cat libraries.txt | while read line; do new_group_id="${group_id//.//}" service_name=${artifact_id#*-cloud-} - if [[ "${artifact_id}" == *storage* ]]; then + if [[ "${artifact_id}" == google-cloud-storage ]]; then service_name=bigstore fi + if [[ "${artifact_id}" == google-cloud-storage-transfer ]]; then + service_name=storagetransfer + fi URL=https://repo1.maven.org/maven2/$new_group_id/$artifact_id