This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-spatialbench.git
The following commit(s) were added to refs/heads/main by this push:
new ff43ee1 Fix release verification script to work correctly with source
release (#65)
ff43ee1 is described below
commit ff43ee1d8b61eba6455bc486f4d2106628223cc6
Author: Kristin Cowalcijk <[email protected]>
AuthorDate: Thu Nov 27 15:03:40 2025 +0800
Fix release verification script to work correctly with source release (#65)
---
dev/release/verify-release-candidate.sh | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index 4a55d9b..103a8d6 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -139,11 +139,11 @@ fetch_archive() {
import_gpg_keys
local dist_name=$1
- download_rc_file ${dist_name}.tar.gz
- download_rc_file ${dist_name}.tar.gz.asc
- download_rc_file ${dist_name}.tar.gz.sha512
- gpg --verify ${dist_name}.tar.gz.asc ${dist_name}.tar.gz
- ${sha512_verify} ${dist_name}.tar.gz.sha512
+ download_rc_file ${dist_name}-src.tar.gz
+ download_rc_file ${dist_name}-src.tar.gz.asc
+ download_rc_file ${dist_name}-src.tar.gz.sha512
+ gpg --verify ${dist_name}-src.tar.gz.asc ${dist_name}-src.tar.gz
+ ${sha512_verify} ${dist_name}-src.tar.gz.sha512
}
verify_dir_artifact_signatures() {
@@ -224,7 +224,7 @@ ensure_source_directory() {
if [ ! -d "${SPATIALBENCH_SOURCE_DIR}" ]; then
pushd $SPATIALBENCH_TMPDIR
fetch_archive ${dist_name}
- tar xf ${dist_name}.tar.gz
+ tar xf ${dist_name}-src.tar.gz
popd
fi