Merge pull request #353 from gnome-terminator/doc/release

Update RELEASE docs
This commit is contained in:
Markus Frosch 2021-01-04 07:25:20 +01:00 committed by GitHub
commit 216830db27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -69,8 +69,14 @@ git push --tags
To provide a signed tarball for distributions we use sdist and gpg:
```
python setup.py sdist
gpg -u markus@lazyfrosch.de --armor \
VERSION=$(git describe --tags | sed s/^v//)
GPGKEY=$(git config --get user.email)
mkdir -p dist
git archive HEAD --prefix terminator-${VERSION}/ -o dist/terminator-${VERSION}.tar.gz
gpg -u ${GPGKEY} --armor \
--output dist/terminator-${VERSION}.tar.gz.asc \
--detach-sig dist/terminator-${VERSION}.tar.gz
```