Skip to content

Commit

Permalink
fix: specify artifact_id to replace explicitly. (#6361)
Browse files Browse the repository at this point in the history
This change should fix the issue that 4 artifacts are mapped to service "bigstore".
  • Loading branch information
zhumin8 authored Jan 16, 2024
1 parent b098a81 commit 6af9a9a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .kokoro/nightly/create-versions-csv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6af9a9a

Please sign in to comment.