sk0x50 commented on code in PR #1308:
URL: https://github.com/apache/ignite-3/pull/1308#discussion_r1012848370
##########
RELEASE.md:
##########
@@ -99,3 +99,46 @@ Perform the following actions ONLY after the vote is
successful and closed.
svn add {version}
svn commit -m “Apache Ignite {version}”
```
+
+
+## Gradle commands
+1. Fill sign information in gradle.properties file.
+ ```
+ signing.keyId=*INSERT KEY HERE LAST 8 CHARS*
+ signing.password=*INSERT PASSWORD HERE*
+ signing.secretKeyRingFile=*INSERT KEY RING ABSOLUTE PATH HERE*
+ ```
+ For generate secret key ring file please use follow command
+ ```
+ gpg --keyring secring.gpg --export-secret-keys > ~/.gnupg/secring.gpg
+ ```
+ Show key id command (you need only last 8 chars from printed key)
+ ```
+ gpg -K
+ ```
+2. You can sign any artifact via follow tasks
+ ```
+ signCliZip --- sign CLI zip distribution
+ signDbZip --- sign Ignite zip distribution
+ signAllDistZip --- sign meta zip distribution (CLI + Ignite)
+ signMavenPublication --- sign jars of all modules
Review Comment:
Could you please clarify which command(s) must be executed by a release
manager to build&sing all required artifacts?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]