This is an automated email from the ASF dual-hosted git repository. kou pushed a commit to branch maint-21.0.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/maint-21.0.0 by this push: new 71c6a391ec GH-47061: [Release] Fix wrong variable name for signing (#47062) 71c6a391ec is described below commit 71c6a391ecffacb298c0f5f90fc97b76c3cb7418 Author: Sutou Kouhei <k...@clear-code.com> AuthorDate: Fri Jul 11 10:20:59 2025 +0900 GH-47061: [Release] Fix wrong variable name for signing (#47062) ### Rationale for this change We must use GPG key ID not GPG key itself for `gpg --local-user`. ### What changes are included in this PR? Use `ARROW_GPG_KEY_UID`. ### Are these changes tested? No. ### Are there any user-facing changes? No. * GitHub Issue: #47061 Authored-by: Sutou Kouhei <k...@clear-code.com> Signed-off-by: Sutou Kouhei <k...@clear-code.com> --- .github/workflows/release_candidate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_candidate.yml b/.github/workflows/release_candidate.yml index 9e44f4d252..92c5e62f39 100644 --- a/.github/workflows/release_candidate.yml +++ b/.github/workflows/release_candidate.yml @@ -96,7 +96,7 @@ jobs: gpg \ --armor \ --detach-sign \ - --local-user "${ARROW_GPG_SECRET_KEY}" \ + --local-user "${ARROW_GPG_KEY_UID}" \ --output "${RELEASE_TARBALL}.asc" \ "${RELEASE_TARBALL}" fi