setup-java/src/setup-java.ts

59 lines
1.9 KiB
TypeScript
Raw Normal View History

2019-07-10 16:54:25 +02:00
import * as core from '@actions/core';
import * as installer from './installer';
2019-11-16 01:01:13 +01:00
import * as auth from './auth';
2020-05-02 13:33:15 +02:00
import * as gpg from './gpg';
2020-07-16 03:53:39 +02:00
import * as constants from './constants';
2019-07-12 04:57:54 +02:00
import * as path from 'path';
2019-07-10 16:54:25 +02:00
async function run() {
try {
2020-07-16 03:53:39 +02:00
let version = core.getInput(constants.INPUT_VERSION);
2019-08-13 22:24:39 +02:00
if (!version) {
2020-07-16 03:53:39 +02:00
version = core.getInput(constants.INPUT_JAVA_VERSION, {required: true});
2019-08-13 22:24:39 +02:00
}
2020-07-16 03:53:39 +02:00
const arch = core.getInput(constants.INPUT_ARCHITECTURE, {required: true});
const javaPackage = core.getInput(constants.INPUT_JAVA_PACKAGE, {
required: true
});
const jdkFile = core.getInput(constants.INPUT_JDK_FILE, {required: false});
await installer.getJava(version, arch, jdkFile, javaPackage);
2019-07-12 04:57:54 +02:00
2020-05-02 13:33:15 +02:00
const matchersPath = path.join(__dirname, '..', '..', '.github');
2020-07-16 03:53:39 +02:00
core.info(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
const id = core.getInput(constants.INPUT_SERVER_ID, {required: false});
const username = core.getInput(constants.INPUT_SERVER_USERNAME, {
required: false
});
const password = core.getInput(constants.INPUT_SERVER_PASSWORD, {
required: false
});
2020-07-16 05:15:27 +02:00
const gpgPrivateKey =
core.getInput(constants.INPUT_GPG_PRIVATE_KEY, {required: false}) ||
constants.INPUT_DEFAULT_GPG_PRIVATE_KEY;
2020-05-02 13:33:15 +02:00
const gpgPassphrase =
2020-07-16 03:53:39 +02:00
core.getInput(constants.INPUT_GPG_PASSPHRASE, {required: false}) ||
(gpgPrivateKey ? constants.INPUT_DEFAULT_GPG_PASSPHRASE : undefined);
2019-11-16 01:01:13 +01:00
2020-05-23 06:30:38 +02:00
if (gpgPrivateKey) {
core.setSecret(gpgPrivateKey);
}
2020-05-02 13:33:15 +02:00
await auth.configAuthentication(id, username, password, gpgPassphrase);
if (gpgPrivateKey) {
2020-07-16 03:53:39 +02:00
core.info('importing private key');
2020-05-02 13:33:15 +02:00
const keyFingerprint = (await gpg.importKey(gpgPrivateKey)) || '';
2020-07-16 03:53:39 +02:00
core.saveState(
constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT,
keyFingerprint
);
2020-05-02 13:33:15 +02:00
}
} catch (error) {
core.setFailed(error.message);
}
2019-07-10 16:54:25 +02:00
}
run();