You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by gw...@apache.org on 2019/03/22 22:31:07 UTC

svn commit: r1856083 - /xmlbeans/trunk/release-guide.txt

Author: gwoolsey
Date: Fri Mar 22 22:31:07 2019
New Revision: 1856083

URL: http://svn.apache.org/viewvc?rev=1856083&view=rev
Log:
more release instructions, with more shell commands

Modified:
    xmlbeans/trunk/release-guide.txt

Modified: xmlbeans/trunk/release-guide.txt
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/release-guide.txt?rev=1856083&r1=1856082&r2=1856083&view=diff
==============================================================================
--- xmlbeans/trunk/release-guide.txt (original)
+++ xmlbeans/trunk/release-guide.txt Fri Mar 22 22:31:07 2019
@@ -100,8 +100,8 @@ svn pd 'svn:executable' $(find -name .sv
   2. Grab the current deployed POM, and edit the version # and anything else that has changed:
      https://repository.apache.org/service/local/repo_groups/public/content/org/apache/xmlbeans/xmlbeans/VERSION/xmlbeans-VERSION.pom
 
-  3. Sign the jars, zip, tgz, and pom with your key:
-     gpg -ab *.jar *.zip *.tgz *.pom
+  3. Sign the jars, zip, tgz, and pom with your key (gpg doesn't sign via --multifile yet):
+     for f in *.jar *.zip *.tgz *.pom; do gpg --default-key 1556F3A4 -ab $f; done
 
   4. Build the nexus bundle.jar to upload to 
      repository.apache.org:
@@ -112,6 +112,14 @@ svn pd 'svn:executable' $(find -name .sv
   6. Generate checksums (sha256sum, sha512sum) for the *.zip and *.tgz files
      and their signature (*.asc) files
 
+     for f in *.zip *.tgz *.zip.asc *.tgz.asc
+     do 
+         for b in 256 512
+         do 
+             sha${b}sum $f > $f.sha$b
+         done
+     done
+
   7. Commit the *.tgz and *.zip files, their signatures, and sha256 and sha512
      checksums to the release candidate repo at
      https://dist.apache.org/repos/dist/dev/poi/xmlbeans/



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org