add warning if go-version is empty

pull/350/head
Dmitry Shibanov 2 years ago
parent 7406d654ad
commit c7f2c70396

@ -63600,6 +63600,9 @@ function run() {
core.debug(`add bin ${added}`);
core.info(`Successfully set up Go version ${versionSpec}`);
}
else {
core.info('[warning]go-version input was not specified. The action will try to use pre-installed version.');
}
const goPath = yield io.which('go');
const goVersion = (child_process_1.default.execSync(`${goPath} version`) || '').toString();
if (cache && cache_utils_1.isCacheFeatureAvailable()) {

@ -54,6 +54,10 @@ export async function run() {
const added = await addBinToPath();
core.debug(`add bin ${added}`);
core.info(`Successfully set up Go version ${versionSpec}`);
} else {
core.info(
'[warning]go-version input was not specified. The action will try to use pre-installed version.'
);
}
const goPath = await io.which('go');

Loading…
Cancel
Save