This is an automated email from the ASF dual-hosted git repository.
djwang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudberry-site.git
The following commit(s) were added to refs/heads/main by this push:
new a5f9ee5309 Doc: update multiple artifacts signature and checksum method
a5f9ee5309 is described below
commit a5f9ee530988d800312102770afbfb91c907b65b
Author: Dianjin Wang <[email protected]>
AuthorDate: Wed Mar 4 16:37:07 2026 +0800
Doc: update multiple artifacts signature and checksum method
---
src/pages/releases/index.md | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/src/pages/releases/index.md b/src/pages/releases/index.md
index b1ec90b25a..e8857f5784 100644
--- a/src/pages/releases/index.md
+++ b/src/pages/releases/index.md
@@ -46,6 +46,15 @@ Primary key fingerprint: 3B90 B563 4E45 06F0 5BA5 1F2F C960
4135 C07C D12A
Subkey fingerprint: 2157 1B62 BF59 A2C8 96EE A490 60C8 D62C 2677 5FC1
```
+:::tip
+
+To verify multiple `.tar.gz` artifacts in the current directory:
+
+```
+for i in *.tar.gz; do echo $i; gpg --verify $i.asc $i ; done
+```
+:::
+
### Checking the SHA512 checksum
The SHA512 checksum is used to check that a file has been downloaded
correctly, and your download hasn't been modifed or is otherwise incomplete or
faulty.
@@ -66,3 +75,13 @@ Expected output should be:
```
apache-cloudberry-2.0.0-incubating-src.tar.gz: OK
```
+
+:::tip
+
+To check SHA512 checksums for multiple `.tar.gz` artifacts in the current
directory:
+
+```
+for i in *.tar.gz; do echo $i; sha512sum --check $i.sha512; done
+```
+
+:::
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]