diff --git a/kokoro/create_github_release_branch.sh b/kokoro/create_github_release_branch.sh index 94bdb60..a455440 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_awskms is populated by Kokoro. + # Note: KOKORO_GIT_COMMIT is populated by Kokoro. GITHUB_RELEASE_UTIL_OPTS+=( - -c "${KOKORO_GIT_COMMIT_tink_go_awskms}" + -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 6315bf3..6f0233f 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_awskms is populated by Kokoro. + # Note: KOKORO_GIT_COMMIT is populated by Kokoro. GITHUB_RELEASE_UTIL_OPTS+=( - -c "${KOKORO_GIT_COMMIT_tink_go_awskms}" + -c "${KOKORO_GIT_COMMIT}" -t "${GITHUB_ACCESS_TOKEN}" ) fi