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