This is an automated email from the ASF dual-hosted git repository.
vkulichenko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 5708dd2 IGNITE-14571 - Added release finalization procedure to
RELEASE.md
5708dd2 is described below
commit 5708dd27ca9ae494defeb098f242f8b08cff6071
Author: Valentin Kulichenko <[email protected]>
AuthorDate: Tue Jun 29 10:59:47 2021 -0700
IGNITE-14571 - Added release finalization procedure to RELEASE.md
---
RELEASE.md | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/RELEASE.md b/RELEASE.md
index 9fee801..9085849 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -60,7 +60,8 @@ For all the commands going forward:
10. Commit ZIP packages:
```
cd {dist.dev}
- svn commit -m “{version}-rc{rc}”
+ svn add {version}-rc{rc}
+ svn commit -m “Apache Ignite {version} RC{rc}”
```
11. Put the release on a vote on the developers mailing list.
@@ -68,4 +69,19 @@ For all the commands going forward:
Perform the following actions ONLY after the vote is successful and closed.
-TBD
+1. Login to the Apache Nexus and release the staging repository:
https://repository.apache.org/#stagingRepositories
+2. Create an empty folder under the release distribution directory:
+ ```
+ rm -rf {dist.release}/{version}
+ mkdir {dist.release}/{version}
+ ```
+3. Copy ZIP packages along with checksums and signatures to the release
distribution directory:
+ ```
+ cp {dist.dev}/{version}-rc{rc}/* {dist.release}/{version}
+ ```
+4. Commit ZIP packages:
+ ```
+ cd {dist.release}
+ svn add {version}
+ svn commit -m “Apache Ignite {version}”
+ ```