Skip to content

Commit 71c6a39

Browse files
committed
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 <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent c8b714f commit 71c6a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release_candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
gpg \
9797
--armor \
9898
--detach-sign \
99-
--local-user "${ARROW_GPG_SECRET_KEY}" \
99+
--local-user "${ARROW_GPG_KEY_UID}" \
100100
--output "${RELEASE_TARBALL}.asc" \
101101
"${RELEASE_TARBALL}"
102102
fi

0 commit comments

Comments
 (0)