Skip to content

Commit c3636b8

Browse files
author
Boris S
committed
corrected some release instructions
1 parent 120f2fb commit c3636b8

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

KEYS

+11
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ Developers:
66
Create a key:
77
gpg --gen-key
88

9+
Private keys is stored in ~/.gnupg
10+
911
Adding your key to this file:
1012
(gpg --list-sigs <key id> && gpg --armor --export <key id>) >> this file.
1113

14+
15+
1216
Publish the key:
1317
gpg --keyserver pgp.mit.edu --send-keys <key id>
1418

@@ -18,6 +22,13 @@ Developers:
1822
gpg --sign-key <key id>
1923
gpg --keyserver pgp.mit.edu --send-keys <key id>
2024

25+
Siggning release with the key *may* require the following some of these steps:
26+
git config --global gpg.program gpg2
27+
git config --global user.signingkey D2103453 // where D2103453 is your key
28+
29+
export GPG_TTY=$(tty) // to allow passphrase entry
30+
31+
2132
Additional Information:
2233
http://www.apache.org/dev/openpgp.html#generate-key
2334

RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To release to a local Maven repository:
5353
./gradlew clean publishToMavenLocal
5454
```
5555

56-
To build a tarball suitable for an ASF source release (and its accompanying MD5 file):
56+
To build a tarball suitable for an ASF source release (and its accompanying md5 file):
5757

5858
First, clean any non-checked-in files from git (this removes all such files without prompting):
5959

@@ -179,7 +179,7 @@ previous step to the new directory:
179179
cd samza-dist
180180
mkdir $VERSION
181181
cp ${SAMZA_SRC_ROOT}/build/distribution/source/apache-samza-$VERSION-src.tgz $VERSION
182-
cp ${SAMZA_SRC_ROOT}/build/distribution/source/apache-samza-$VERSION-src.tgz.MD5 $VERSION
182+
cp ${SAMZA_SRC_ROOT}/build/distribution/source/apache-samza-$VERSION-src.tgz.md5 $VERSION
183183
cp ${SAMZA_SRC_ROOT}/build/distribution/source/apache-samza-$VERSION-src.tgz.asc $VERSION
184184
svn add $VERSION
185185
```

0 commit comments

Comments
 (0)