Merge pull request #353 from gnome-terminator/doc/release
Update RELEASE docs
This commit is contained in:
commit
216830db27
10
RELEASE.md
10
RELEASE.md
|
@ -69,8 +69,14 @@ git push --tags
|
||||||
To provide a signed tarball for distributions we use sdist and gpg:
|
To provide a signed tarball for distributions we use sdist and gpg:
|
||||||
|
|
||||||
```
|
```
|
||||||
python setup.py sdist
|
VERSION=$(git describe --tags | sed s/^v//)
|
||||||
gpg -u markus@lazyfrosch.de --armor \
|
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 \
|
--output dist/terminator-${VERSION}.tar.gz.asc \
|
||||||
--detach-sig dist/terminator-${VERSION}.tar.gz
|
--detach-sig dist/terminator-${VERSION}.tar.gz
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue