File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,13 @@ Developers:
6
6
Create a key:
7
7
gpg --gen-key
8
8
9
+ Private keys is stored in ~/.gnupg
10
+
9
11
Adding your key to this file:
10
12
(gpg --list-sigs <key id> && gpg --armor --export <key id>) >> this file.
11
13
14
+
15
+
12
16
Publish the key:
13
17
gpg --keyserver pgp.mit.edu --send-keys <key id>
14
18
@@ -18,6 +22,13 @@ Developers:
18
22
gpg --sign-key <key id>
19
23
gpg --keyserver pgp.mit.edu --send-keys <key id>
20
24
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
+
21
32
Additional Information:
22
33
http://www.apache.org/dev/openpgp.html#generate-key
23
34
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ To release to a local Maven repository:
53
53
./gradlew clean publishToMavenLocal
54
54
```
55
55
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):
57
57
58
58
First, clean any non-checked-in files from git (this removes all such files without prompting):
59
59
@@ -179,7 +179,7 @@ previous step to the new directory:
179
179
cd samza-dist
180
180
mkdir $VERSION
181
181
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
183
183
cp ${SAMZA_SRC_ROOT} /build/distribution/source/apache-samza-$VERSION -src.tgz.asc $VERSION
184
184
svn add $VERSION
185
185
```
You can’t perform that action at this time.
0 commit comments