1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Try siginig again

This commit is contained in:
Matt Brown 2021-01-11 15:05:16 -05:00 committed by Daniil Gentili
parent 5f6d93d977
commit b2db33b465
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -11,6 +11,11 @@ php $DIR/improve_class_alias.php
vendor/bin/box compile
if [[ "$GPG_SIGNING" != '' ]] ; then
echo "$SIGNING_KEY" | gpg --import --no-tty --batch --yes
gpg --command-fd 0 --pinentry-mode loopback -u "12CE0F1D262429A5" --batch --detach-sign --armor --output build/psalm.phar.asc build/psalm.phar
if [[ "$SIGNING_KEY" != '' ]] ; then
echo "Load secret key into gpg"
echo "$SIGNING_KEY" | gpg --import --no-tty --batch --yes
fi
echo "Sign Phar"
gpg --command-fd 0 --pinentry-mode loopback -u 12CE0F1D262429A5 --batch --detach-sign --armor --output build/psalm.phar.asc build/psalm.phar
fi