We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d34438b commit 7ac3cd2Copy full SHA for 7ac3cd2
dist/cleanup/index.js
@@ -6196,7 +6196,7 @@ function removePrivateKeyFromKeychain() {
6196
yield gpg.deleteKey(keyFingerprint);
6197
}
6198
catch (error) {
6199
- core.setFailed('Failed to remove private key');
+ core.setFailed(`Failed to remove private key due to: ${error.message}`);
6200
6201
6202
});
src/cleanup-java.ts
@@ -11,7 +11,7 @@ async function removePrivateKeyFromKeychain() {
11
const keyFingerprint = core.getState(constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT);
12
await gpg.deleteKey(keyFingerprint);
13
} catch (error) {
14
15
16
17
0 commit comments