From 5f7d0b887fad2f6e1ffbfbd9aa9a0df2957f1cac Mon Sep 17 00:00:00 2001 From: Jacob Hummer Date: Sat, 10 Feb 2024 13:01:12 -0600 Subject: [PATCH] Update main.ts --- src/main.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 5603346..7741028 100644 --- a/src/main.ts +++ b/src/main.ts @@ -41,7 +41,9 @@ const workflowCache = core.getBooleanInput("cache"); const keyPrefix = `fontist-${version}-${process.env.RUNNER_OS}` const installationKey = `${keyPrefix}-installation`; -if (!found) { +if (found) { + core.info(`Fontist v${version} found in tool cache!`); +} else { core.info(`Fontist v${version} not found in tool cache.`); const tempDir = join(process.env.RUNNER_TEMP!, Math.random().toString());