Skip to content

Commit

Permalink
Use the correct name for the variable injected by Kokoro
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 568459302
Change-Id: I9a0ed473a8322d5788231a38efab91f6f0ebc078
  • Loading branch information
morambro authored and copybara-github committed Sep 26, 2023
1 parent 32f0a86 commit d0466fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions kokoro/create_github_release_branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions kokoro/create_github_release_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d0466fa

Please sign in to comment.