We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3faa7c commit 69e4f8fCopy full SHA for 69e4f8f
.github/workflows/release.yml
@@ -35,8 +35,8 @@ jobs:
35
mkdir -p ~/.gnupg/
36
chmod 0700 ~/.gnupg/
37
echo "$GPG_SIGNING_KEY" > ~/.gnupg/private.key
38
- gpg --import ~/.gnupg/private.key
39
- gpg -u [email protected] --pinentry-mode loopback --passphrase "${GPG_PASSPHRASE}" --detach-sign --output deployer.phar.asc deployer.phar
+ gpg --import --no-tty --batch --yes ~/.gnupg/private.key
+ gpg -u [email protected] --command-fd 0 --passphrase-fd 0 --batch --pinentry-mode loopback --passphrase "${GPG_PASSPHRASE}" --detach-sign --output deployer.phar.asc deployer.phar
40
env:
41
GPG_SIGNING_KEY: |
42
${{ secrets.GPG_SIGNING_KEY }}
0 commit comments