2020-05-02 19:33:15 +08:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as gpg from './gpg';
|
2020-07-16 09:53:39 +08:00
|
|
|
import * as constants from './constants';
|
2020-05-02 19:33:15 +08:00
|
|
|
|
|
|
|
async function run() {
|
2020-07-16 09:53:39 +08:00
|
|
|
if (core.getInput(constants.INPUT_GPG_PRIVATE_KEY, {required: false})) {
|
|
|
|
core.info('removing private key from keychain');
|
2020-05-02 19:33:15 +08:00
|
|
|
try {
|
2020-07-16 09:53:39 +08:00
|
|
|
const keyFingerprint = core.getState(
|
|
|
|
constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT
|
|
|
|
);
|
2020-05-02 19:33:15 +08:00
|
|
|
await gpg.deleteKey(keyFingerprint);
|
|
|
|
} catch (error) {
|
2020-07-18 11:23:13 +08:00
|
|
|
core.setFailed('failed to remove private key');
|
2020-05-02 19:33:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|