5
0
mirror of https://gitea.com/actions/setup-java.git synced 2025-11-06 07:47:06 +00:00

addressed most of the feedback

This commit is contained in:
Jared Petersen
2020-07-15 19:53:39 -06:00
parent 01f44229d4
commit 7f2382879a
7 changed files with 130 additions and 51 deletions

View File

@@ -1,11 +1,14 @@
import * as core from '@actions/core';
import * as gpg from './gpg';
import * as constants from './constants';
async function run() {
if (core.getInput('gpg-private-key', {required: false})) {
console.log('removing private key from keychain');
if (core.getInput(constants.INPUT_GPG_PRIVATE_KEY, {required: false})) {
core.info('removing private key from keychain');
try {
const keyFingerprint = core.getState('gpg-private-key-fingerprint');
const keyFingerprint = core.getState(
constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT
);
await gpg.deleteKey(keyFingerprint);
} catch (error) {
core.setFailed(error.message);