From 955e5f4babeae7dfe15eab1abbcc5aebaa2be8a7 Mon Sep 17 00:00:00 2001 From: Moreno Ambrosin Date: Thu, 22 Jun 2023 01:59:46 -0700 Subject: [PATCH] Use the correct variable name in kokoro/create_github_release_tag.sh PiperOrigin-RevId: 542493123 Change-Id: I754ad70462160d3264be5be0a6dc4a820bd23b7e --- kokoro/create_github_release_tag.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kokoro/create_github_release_tag.sh b/kokoro/create_github_release_tag.sh index 14f57a8..fe6f994 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 is populated by Kokoro. + # Note: KOKORO_GIT_COMMIT_tink_go_hcvault is populated by Kokoro. GITHUB_RELEASE_UTIL_OPTS+=( - -c "${KOKORO_GIT_COMMIT}" + -c "${KOKORO_GIT_COMMIT_tink_go_hcvault}" -t "${GITHUB_ACCESS_TOKEN}" ) fi