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 4b639be commit b7ec7f8Copy full SHA for b7ec7f8
.github/workflows/main.yml
@@ -278,7 +278,9 @@ jobs:
278
gpg --list-secret-keys --keyid-format LONG
279
280
# Test signing capability
281
- echo "test" | gpg --batch --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" --sign --armor > /dev/null 2>&1 && echo "✓ GPG signing test successful"
+ # Passphrase should be cached in gpg-agent from preset-passphrase above
282
+ # If not cached, this will fail and we'll know import didn't work
283
+ echo "test" | gpg --batch --pinentry-mode loopback --sign --armor > /dev/null 2>&1 && echo "✓ GPG signing test successful" || echo "⚠ GPG signing test failed - passphrase may not be cached"
284
285
- name: Run GoReleaser
286
uses: goreleaser/goreleaser-action@v6
0 commit comments