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: I68d8f532971890a717b859cc710da26effa7d165
  • Loading branch information
morambro authored and copybara-github committed Sep 26, 2023
1 parent 3be290e commit b92804b
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_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
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_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
Expand Down

0 comments on commit b92804b

Please sign in to comment.