This is an automated email from the ASF dual-hosted git repository.

raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 61a09f5a chore(dev/release): use release/KEYS instead of dev/KEYS 
(#683)
61a09f5a is described below

commit 61a09f5af2c8f08a1f395a39bf74b580b082f0de
Author: Matt Topol <[email protected]>
AuthorDate: Wed Mar 4 11:56:00 2026 -0500

    chore(dev/release): use release/KEYS instead of dev/KEYS (#683)
    
    fixes #677
    
    ---------
    
    Co-authored-by: Raúl Cumplido <[email protected]>
---
 dev/release/verify_rc.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/release/verify_rc.sh b/dev/release/verify_rc.sh
index 7e7791ae..c5c67d1e 100755
--- a/dev/release/verify_rc.sh
+++ b/dev/release/verify_rc.sh
@@ -34,7 +34,7 @@ set -x
 VERSION="$1"
 RC="$2"
 
-ARROW_DIST_BASE_URL="https://dist.apache.org/repos/dist/dev/arrow";
+ARROW_KEYS_URL="https://www.apache.org/dyn/closer.lua?action=download&filename=arrow/KEYS";
 
DOWNLOAD_RC_BASE_URL="https://github.com/apache/arrow-go/releases/download/v${VERSION}-rc${RC}";
 ARCHIVE_BASE_NAME="apache-arrow-go-${VERSION}"
 
@@ -83,7 +83,7 @@ download_rc_file() {
 
 import_gpg_keys() {
   if [ "${VERIFY_SIGN}" -gt 0 ]; then
-    download "${ARROW_DIST_BASE_URL}/KEYS"
+    download "${ARROW_KEYS_URL}"
     gpg --import KEYS
   fi
 }

Reply via email to