mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-12-05 21:27:13 -06:00
tweak release script, add signing one
This commit is contained in:
18
contrib/release-scripts/sign.sh
Executable file
18
contrib/release-scripts/sign.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ x"$1" = x ]
|
||||
then
|
||||
echo "Usage: $0 key-id" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
D=$(realpath "$0")
|
||||
D=$(dirname "$D")
|
||||
cd "$D"
|
||||
|
||||
cd out
|
||||
|
||||
gpg --detach-sign -u "$1" mkp224o-*-src.tar.gz
|
||||
gpg --detach-sign -u "$1" mkp224o-*-src.tar.zst
|
||||
gpg --detach-sign -u "$1" mkp224o-*-w32.zip
|
||||
gpg --detach-sign -u "$1" mkp224o-*-w64.zip
|
||||
Reference in New Issue
Block a user