From b92804bfbbc3bae6c475d6e4067be9fb6bb42804 Mon Sep 17 00:00:00 2001 From: Moreno Ambrosin Date: Tue, 26 Sep 2023 01:30:14 -0700 Subject: [PATCH] Use the correct name for the variable injected by Kokoro PiperOrigin-RevId: 568459302 Change-Id: I68d8f532971890a717b859cc710da26effa7d165 --- kokoro/create_github_release_branch.sh | 4 ++-- kokoro/create_github_release_tag.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kokoro/create_github_release_branch.sh b/kokoro/create_github_release_branch.sh index c8687ae..837c5e4 100644 --- a/kokoro/create_github_release_branch.sh +++ b/kokoro/create_github_release_branch.sh @@ -47,9 +47,9 @@ fi GITHUB_RELEASE_UTIL_OPTS=() if [[ "${IS_KOKORO}" == "true" ]] ; then - # Note: KOKORO_GIT_COMMIT_tink_go_gcpkms is populated by Kokoro. + # Note: KOKORO_GIT_COMMIT is populated by Kokoro. GITHUB_RELEASE_UTIL_OPTS+=( - -c "${KOKORO_GIT_COMMIT_tink_go_gcpkms}" + -c "${KOKORO_GIT_COMMIT}" -t "${GITHUB_ACCESS_TOKEN}" ) fi diff --git a/kokoro/create_github_release_tag.sh b/kokoro/create_github_release_tag.sh index dc3bf4e..16bf09d 100644 --- a/kokoro/create_github_release_tag.sh +++ b/kokoro/create_github_release_tag.sh @@ -47,9 +47,9 @@ fi GITHUB_RELEASE_UTIL_OPTS=() if [[ "${IS_KOKORO}" == "true" ]] ; then - # Note: KOKORO_GIT_COMMIT_tink_go_gcpkms is populated by Kokoro. + # Note: KOKORO_GIT_COMMIT is populated by Kokoro. GITHUB_RELEASE_UTIL_OPTS+=( - -c "${KOKORO_GIT_COMMIT_tink_go_gcpkms}" + -c "${KOKORO_GIT_COMMIT}" -t "${GITHUB_ACCESS_TOKEN}" ) fi