From 614d7c70029aa59a204d9a60ade0915fcf5850c0 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 30 Nov 2025 20:16:34 +0100 Subject: [PATCH] Update release-guide.txt --- src/documentation/release-guide.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/documentation/release-guide.txt b/src/documentation/release-guide.txt index 9a60a491b7..ba9f88851a 100644 --- a/src/documentation/release-guide.txt +++ b/src/documentation/release-guide.txt @@ -106,20 +106,19 @@ svn update --set-depth infinity dist/release/poi/ - when build completes, download the built jars from https://ci-builds.apache.org/job/POI/job/POI-DSL-1.11/lastSuccessfulBuild/artifact/ - 3. To produce the source distributions, run - - ./gradlew srcDistZip + 3. To produce the source distribution, run - ./gradlew srcDistTar 4. Copy the build/dist files to your svn checkout of dist.apache.org (dist/dev/poi/src) {code:sh} svn co https://dist.apache.org/repos/dist/release/poi /opt/poi-dist -cp build/dist/*.zip build/*.tgz /opt/poi-dist/dev/ +cp build/*.tgz /opt/poi-dist/dev/ {code} 5. Generate SHA512 checksums {code:sh} -for f in *.zip *.tgz +for f in *.tgz do sha512sum $f > $f.sha512 done @@ -129,7 +128,7 @@ done - The 1556F3A4 key in the command below is just an example, replace the value with your own key id {code:sh} -for f in *.zip *.tgz; do gpg --default-key 1556F3A4 -ab $f; done +for f in *.tgz; do gpg --default-key 1556F3A4 -ab $f; done {code} 7. Validate the checksums and signatures