Skip to content

Commit

Permalink
Merge pull request #353 from gnome-terminator/doc/release
Browse files Browse the repository at this point in the history
Update RELEASE docs
  • Loading branch information
lazyfrosch authored Jan 4, 2021
2 parents 2e83f7d + b33e90c commit 216830d
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 @@ -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 [email protected] --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 216830d

Please sign in to comment.