Skip to content

Commit

Permalink
Update RELEASE docs
Browse files Browse the repository at this point in the history
fixes #348
  • Loading branch information
lazyfrosch committed Jan 3, 2021
1 parent 6fa9d54 commit b33e90c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,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
```
Expand Down

0 comments on commit b33e90c

Please sign in to comment.