Skip to content

Commit 369b244

Browse files
authored
Relase: Use dist/release KEYS (#1315)
* use https://downloads.apache.org/iceberg * use the right url for svn
1 parent e0bfc35 commit 369b244

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

mkdocs/docs/how-to-release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ export LAST_COMMIT_ID=$(git rev-list ${GIT_TAG} 2> /dev/null | head -n 1)
8282
```
8383

8484
The `-s` option will sign the commit. If you don't have a key yet, you can find the instructions [here](http://www.apache.org/dev/openpgp.html#key-gen-generate-key). To install gpg on a M1 based Mac, a couple of additional steps are required: <https://gist.github.com/phortuin/cf24b1cca3258720c71ad42977e1ba57>.
85-
If you have not published your GPG key in [KEYS](https://dist.apache.org/repos/dist/dev/iceberg/KEYS) yet, you must publish it before sending the vote email by doing:
85+
If you have not published your GPG key in [KEYS](https://downloads.apache.org/iceberg/KEYS) yet, you must publish it before sending the vote email by doing:
8686

8787
```bash
88-
svn co https://dist.apache.org/repos/dist/dev/iceberg icebergsvn
88+
svn co https://dist.apache.org/repos/dist/release/iceberg icebergsvn
8989
cd icebergsvn
9090
echo "" >> KEYS # append a newline
9191
gpg --list-sigs <YOUR KEY ID HERE> >> KEYS # append signatures
@@ -166,7 +166,7 @@ The release tarball, signature, and checksums are here:
166166
167167
You can find the KEYS file here:
168168
169-
* https://dist.apache.org/repos/dist/dev/iceberg/KEYS
169+
* https://downloads.apache.org/iceberg/KEYS
170170
171171
Convenience binary artifacts are staged on pypi:
172172

mkdocs/docs/verify-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ After downloading the source tarball, signature, checksum, and KEYS file, here a
4040
First, import the keys.
4141

4242
```sh
43-
curl https://dist.apache.org/repos/dist/dev/iceberg/KEYS -o KEYS
43+
curl https://downloads.apache.org/iceberg/KEYS -o KEYS
4444
gpg --import KEYS
4545
```
4646

0 commit comments

Comments
 (0)