commit 0e44933a48c2eac4fb5861be068e384bf5bb6965 Author: Arturo Filastò arturo@filasto.net Date: Wed Nov 16 14:48:12 2016 +0100
Add Makefile for release workflow --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+)
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e22afb4 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +VERSION = 2.0.2 + +man: + cd docs && make man + cp docs/build/man/* data/ + @echo "Now commit the updated man pages" + +sdist: + python setup.py sdist + +sign: + gpg --no-version --detach-sign --armor --local-user 0x702287F4 dist/ooniprobe-${VERSION}.tar.gz + +upload: + twine upload -r pypi dist/ooniprobe-${VERSION}.tar.gz dist/ooniprobe-${VERSION}.tar.gz.asc