Fix: Remove redundant logging for download path and tool extraction
All checks were successful
Test Action / test (push) Successful in 6s

This commit is contained in:
2026-01-11 00:41:24 +01:00
parent 9e8379e67a
commit 874bbdb2ac

View File

@@ -112,7 +112,6 @@ async function run() {
core.info(`Downloading ${asset.name} from ${downloadUrl}...`);
const downloadPath = await tc.downloadTool(downloadUrl);
core.info(`Downloaded to ${downloadPath}`);
let toolDir: string;
const nameLower = asset.name.toLowerCase();
@@ -141,9 +140,7 @@ async function run() {
}
}
core.info(`Tool extracted/located at ${toolDir}`);
core.addPath(toolDir);
core.info(`Added ${toolDir} to PATH`);
} catch (error) {
if (error instanceof Error) {