This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/poi.git
The following commit(s) were added to refs/heads/trunk by this push:
new 614d7c7002 Update release-guide.txt
614d7c7002 is described below
commit 614d7c70029aa59a204d9a60ade0915fcf5850c0
Author: PJ Fanning <[email protected]>
AuthorDate: Sun Nov 30 20:16:34 2025 +0100
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
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]