Print installed Task version · arduino/setup-task@4b84788 (original) (raw)

2 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -195,6 +195,7 @@ function getTask(version, repoToken) {
195 195 }
196 196 toolPath = path.join(toolPath, "bin");
197 197 core.addPath(toolPath);
198 +core.info(`Successfully setup Task version ${targetVersion}`);
198 199 });
199 200 }
200 201 exports.getTask = getTask;
Original file line number Diff line number Diff line change
@@ -195,4 +195,5 @@ export async function getTask(version: string, repoToken: string) {
195 195
196 196 toolPath = path.join(toolPath, "bin");
197 197 core.addPath(toolPath);
198 +core.info(`Successfully setup Task version ${targetVersion}`);
198 199 }