Skip to content

Commit

Permalink
Use correct variable name in release scripts
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 585908071
Change-Id: I91071213f35b0c203a19475b05a04085f764e3c3
  • Loading branch information
morambro authored and copybara-github committed Nov 28, 2023
1 parent 368d0b7 commit 0277218
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_cc_gcpkms is populated by Kokoro.
# Note: KOKORO_GIT_COMMIT is populated by Kokoro.
GITHUB_RELEASE_UTIL_OPTS+=(
-c "${KOKORO_GIT_COMMIT_tink_cc_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_cc_gcpkms is populated by Kokoro.
# Note: KOKORO_GIT_COMMIT is populated by Kokoro.
GITHUB_RELEASE_UTIL_OPTS+=(
-c "${KOKORO_GIT_COMMIT_tink_cc_gcpkms}"
-c "${KOKORO_GIT_COMMIT}"
-t "${GITHUB_ACCESS_TOKEN}"
)
fi
Expand Down

0 comments on commit 0277218

Please sign in to comment.