You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2022/12/25 15:45:56 UTC

[arrow-adbc] branch main updated: chore(dev/release): use correct URLs for verification (#280)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new e176978  chore(dev/release): use correct URLs for verification (#280)
e176978 is described below

commit e176978c5192bfab42fdfdc5a73d65bc7f6ff1c9
Author: David Li <li...@gmail.com>
AuthorDate: Sun Dec 25 10:45:52 2022 -0500

    chore(dev/release): use correct URLs for verification (#280)
    
    Fixes #277.
---
 dev/release/03-binary-sign.sh | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev/release/03-binary-sign.sh b/dev/release/03-binary-sign.sh
index cae49c1..2f25309 100755
--- a/dev/release/03-binary-sign.sh
+++ b/dev/release/03-binary-sign.sh
@@ -31,6 +31,7 @@ main() {
     local -r version="$1"
     local -r rc_number="$2"
     local -r tag="apache-arrow-adbc-${version}-rc${rc_number}"
+    local -r tarball="apache-arrow-adbc-${version}"
 
     : ${REPOSITORY:="apache/arrow-adbc"}
 
@@ -79,10 +80,10 @@ main() {
     gh release upload \
        --repo "${REPOSITORY}" \
        "${tag}" \
-       "${tag}.tar.gz" \
-       "${tag}.tar.gz.asc" \
-       "${tag}.tar.gz.sha256" \
-       "${tag}.tar.gz.sha512"
+       "${tarball}.tar.gz" \
+       "${tarball}.tar.gz.asc" \
+       "${tarball}.tar.gz.sha256" \
+       "${tarball}.tar.gz.sha512"
 
     header "Upload signatures for Java"
     upload_asset_signatures "${tag}" $(find "${download_dir}" -type f \( -name '*.jar' -or -name '*.pom' \))