This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/import-public-keys in repository https://gitbox.apache.org/repos/asf/sling-tooling-release.git
commit b616b068aca6bc646cbd7046a58dbd90330f4836 Author: Konrad Windszus <[email protected]> AuthorDate: Tue Jul 15 09:01:23 2025 +0200 Automatically update public keys from Sling website --- check_staged_release.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/check_staged_release.sh b/check_staged_release.sh index 4590013..9cb4977 100755 --- a/check_staged_release.sh +++ b/check_staged_release.sh @@ -26,10 +26,15 @@ else echo "################################################################################" echo "${DOWNLOAD}/${STAGING}" fi +echo "#################################################################################" +echo " IMPORT PUBLIC KEYS FOR SIGNATURES " +echo "#################################################################################" -echo "################################################################################" -echo " CHECK SIGNATURES AND DIGESTS " -echo "################################################################################" +wget --wait 1 -nv -O - https://downloads.apache.org/sling/KEYS | gpg --import + +echo "#################################################################################" +echo " CHECK SIGNATURES AND DIGESTS " +echo "#################################################################################" for i in `find "${DOWNLOAD}/${STAGING}" -type f | grep -v '\.\(asc\|sha1\|md5\|sha512\)$'` do
