You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2022/08/23 07:10:37 UTC

[isis] branch master updated: ISIS-3117: updates release procedures, ensure that .sha512 is added to dist.apache.org

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

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 5781c1a79e ISIS-3117: updates release procedures, ensure that .sha512 is added to dist.apache.org
5781c1a79e is described below

commit 5781c1a79e14dd991d86ea903cdb6814f4eb9cb8
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Tue Aug 23 08:10:28 2022 +0100

    ISIS-3117: updates release procedures, ensure that .sha512 is added to dist.apache.org
---
 .../comguide/modules/ROOT/pages/post-release-successful.adoc          | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc b/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc
index d8031ffa4d..b7b6a967a2 100644
--- a/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc
+++ b/antora/components/comguide/modules/ROOT/pages/post-release-successful.adoc
@@ -215,6 +215,7 @@ repo_root=https://repository.apache.org/content/repositories/releases/org/apache
 zip="source-release.zip"
 asc="$zip.asc"
 md5="$zip.md5"
+sha512="$zip.sha512"
 
 
 fullname="isis-bom"
@@ -226,6 +227,8 @@ curl -O $repo_root/$fullname/$new_ver/$fullname-$new_ver-$md5
 svn add $fullname-$new_ver-$md5
 curl -O $repo_root/$fullname/$new_ver/$fullname-$new_ver-$zip
 svn add $fullname-$new_ver-$zip
+curl -O $repo_root/$fullname/$new_ver/$fullname-$new_ver-$zip
+svn add $fullname-$new_ver-$sha512
 
 if [ "Z${old_ver}Z" == "ZZ" ]; then
         echo "old_ver not specified, so nothing will be removed"
@@ -233,6 +236,7 @@ else
         svn delete $fullname-$old_ver-$asc
         svn delete $fullname-$old_ver-$md5
         svn delete $fullname-$old_ver-$zip
+        svn delete $fullname-$old_ver-$sha512
 fi
 
 popd