diff --git a/dist/index.js b/dist/index.js index b3c50b61..f51d0b98 100644 --- a/dist/index.js +++ b/dist/index.js @@ -195,6 +195,7 @@ function getTask(version, repoToken) { } toolPath = path.join(toolPath, "bin"); core.addPath(toolPath); + core.info(`Successfully setup Task version ${targetVersion}`); }); } exports.getTask = getTask; diff --git a/src/installer.ts b/src/installer.ts index b4c1cf4a..d4c1a989 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -195,4 +195,5 @@ export async function getTask(version: string, repoToken: string) { toolPath = path.join(toolPath, "bin"); core.addPath(toolPath); + core.info(`Successfully setup Task version ${targetVersion}`); }