commit fc0fcdea10324ee8b0c7f01d3f5972bd6b7dd5ca
parent 1dd7b216a00806ffe35af9abb7bf8ab8e2ca228f
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Thu, 5 Dec 2019 12:18:42 +0100
build: add the uploading of PDF and cheatsheet to the release script
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/roll-a-release.sh b/roll-a-release.sh
@@ -22,6 +22,10 @@ gpg --verify nano-$VERSION.tar.xz.asc &&
git tag -u A0ACE884 -a v$VERSION -m "the nano $VERSION release" &&
+make pdf && rm -rf doc/nano.t2p &&
+scp doc/nano.pdf bens@wh0rd.org:nano.pdf &&
+scp doc/cheatsheet.html bens@wh0rd.org:cheatsheet.html &&
+
for file in nano-$VERSION.tar.*z*; do scp $file bens@wh0rd.org:$file; done &&
gnupload --to ftp.gnu.org:nano nano-$VERSION.tar.*z &&