Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

Commit 285406a

Browse files
chore: Migrate gsutil usage to gcloud storage
1 parent d2dca08 commit 285406a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build-ruby-runtime-pipeline.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ sed -e "s|@@GENERATE_DOCKERFILE_IMAGE@@|${GENERATE_DOCKERFILE_IMAGE}|g;\
185185
s|@@TAG@@|${IMAGE_TAG}|g;\
186186
s|@@DEFAULT_RUBY_VERSION@@|${DEFAULT_RUBY_VERSION}|g" \
187187
< ${DIRNAME}/ruby-pipeline/ruby-template.yaml.in > ${DIRNAME}/tmp/ruby-${RUNTIME_VERSION}.yaml
188-
gsutil cp ${DIRNAME}/tmp/ruby-${RUNTIME_VERSION}.yaml ${VERSIONED_GS_URL}
188+
gcloud storage cp ${DIRNAME}/tmp/ruby-${RUNTIME_VERSION}.yaml ${VERSIONED_GS_URL}
189189
echo "**** Uploaded runtime config to ${VERSIONED_GS_URL}"
190190
if [ "${STAGING_FLAG}" = "true" ]; then
191-
gsutil cp ${VERSIONED_GS_URL} ${STAGING_GS_URL}
191+
gcloud storage cp ${VERSIONED_GS_URL} ${STAGING_GS_URL}
192192
echo "**** Also promoted runtime config to ${STAGING_GS_URL}"
193193
fi

release-ruby-runtime-pipeline.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@ if [ -z "${AUTO_YES}" ]; then
9999
fi
100100
fi
101101

102-
gsutil cp ${SOURCE_GS_URL} ${RELEASE_GS_URL}
102+
gcloud storage cp ${SOURCE_GS_URL} ${RELEASE_GS_URL}
103103
echo "**** Promoted runtime config ${SOURCE_GS_URL} to ${RELEASE_GS_URL}"

0 commit comments

Comments
 (0)