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 b292223 commit 8e11453Copy full SHA for 8e11453
.github/workflows/main.yml
@@ -232,8 +232,8 @@ jobs:
232
# Start gpg-agent with loopback pinentry
233
gpg-agent --daemon --allow-loopback-pinentry
234
235
- # Import the subkey
236
- echo "$GPG_PRIVATE_KEY" | gpg --batch --import --passphrase "$GPG_PASSPHRASE"
+ # Import the subkey (passphrase will be provided via pinentry loopback)
+ echo "$GPG_PRIVATE_KEY" | gpg --batch --yes --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" --import
237
238
# Trust the key (required for signing)
239
# Use ultimate trust (6) for the subkey
0 commit comments