Fix: Remove redundant logging for download path and tool extraction
All checks were successful
Test Action / test (push) Successful in 6s
All checks were successful
Test Action / test (push) Successful in 6s
This commit is contained in:
@@ -112,7 +112,6 @@ async function run() {
|
|||||||
core.info(`Downloading ${asset.name} from ${downloadUrl}...`);
|
core.info(`Downloading ${asset.name} from ${downloadUrl}...`);
|
||||||
|
|
||||||
const downloadPath = await tc.downloadTool(downloadUrl);
|
const downloadPath = await tc.downloadTool(downloadUrl);
|
||||||
core.info(`Downloaded to ${downloadPath}`);
|
|
||||||
|
|
||||||
let toolDir: string;
|
let toolDir: string;
|
||||||
const nameLower = asset.name.toLowerCase();
|
const nameLower = asset.name.toLowerCase();
|
||||||
@@ -141,9 +140,7 @@ async function run() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
core.info(`Tool extracted/located at ${toolDir}`);
|
|
||||||
core.addPath(toolDir);
|
core.addPath(toolDir);
|
||||||
core.info(`Added ${toolDir} to PATH`);
|
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error instanceof Error) {
|
if (error instanceof Error) {
|
||||||
|
|||||||
Reference in New Issue
Block a user