Skip to content

Commit 58a9f47

Browse files
authored
Remove dead MIT gpg site and fix release command (#294)
1 parent 46a0f8b commit 58a9f47

2 files changed

Lines changed: 6 additions & 9 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ clean:
130130

131131
.PHONY: release
132132
release: clean lint license
133-
-tar -zcvf skywalking-python-src-$(VERSION).tgz --exclude .venv *
134-
gpg --batch --yes --armor --detach-sig skywalking-python-src-$(VERSION).tgz
135-
shasum -a 512 skywalking-python-src-$(VERSION).tgz > skywalking-python-src-$(VERSION).tgz.sha512
133+
tar -zcvf skywalking-python-src-$VERSION.tgz --exclude .venv *
134+
gpg --batch --yes --armor --detach-sig skywalking-python-src-$VERSION.tgz
135+
shasum -a 512 skywalking-python-src-$VERSION.tgz > skywalking-python-src-$VERSION.tgz.sha512

docs/en/contribution/How-to-release.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,11 @@ This documentation guides the release manager to release the SkyWalking Python i
77
1. Close (if finished, or move to next milestone otherwise) all issues in the current milestone from [skywalking-python](https://github.com/apache/skywalking-python/milestones) and [skywalking](https://github.com/apache/skywalking/milestones), create a new milestone if needed.
88
2. Update CHANGELOG.md and `version` in `pyproject.toml`.
99

10-
11-
## Add your GPG public key to Apache svn
12-
13-
1. Upload your GPG public key to a public GPG site, such as [MIT's site](http://pgp.mit.edu:11371/).
10+
## Add your GPG public key to Apache SVN
1411

1512
1. Log in [id.apache.org](https://id.apache.org/) and submit your key fingerprint.
1613

17-
1. Add your GPG public key into [SkyWalking GPG KEYS](https://dist.apache.org/repos/dist/release/skywalking/KEYS) file, **you can do this only if you are a PMC member**. You can ask a PMC member for help. **DO NOT override the existed `KEYS` file content, only append your key at the end of the file.**
14+
2. Add your GPG public key into [SkyWalking GPG KEYS](https://dist.apache.org/repos/dist/release/skywalking/KEYS) file, **you can do this only if you are a PMC member**. You can ask a PMC member for help. **DO NOT override the existed `KEYS` file content, only append your key at the end of the file.**
1815

1916

2017
## Build and sign the source code package
@@ -29,7 +26,7 @@ git push --tags
2926
make clean && make release
3027
```
3128

32-
## Upload to Apache svn
29+
## Upload to Apache SVN
3330

3431
```bash
3532
svn co https://dist.apache.org/repos/dist/dev/skywalking/python release/skywalking/python

0 commit comments

Comments
 (0)