From 60781865706e82a5c9929097de6f8e9b7279b51e Mon Sep 17 00:00:00 2001 From: Alexey <1337kwiz@gmail.com> Date: Sun, 3 Apr 2022 20:41:15 +0300 Subject: [PATCH] Update cache-distributor.ts --- src/cache-distributions/cache-distributor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cache-distributions/cache-distributor.ts b/src/cache-distributions/cache-distributor.ts index 4aaba033a..f24c78dab 100644 --- a/src/cache-distributions/cache-distributor.ts +++ b/src/cache-distributions/cache-distributor.ts @@ -45,13 +45,13 @@ abstract class CacheDistributor { } public handleMatchResult(matchedKey: string | undefined, primaryKey: string) { - if (matchedKey == primaryKey) { + if (matchedKey) { core.saveState(State.CACHE_MATCHED_KEY, matchedKey); core.info(`Cache restored from key: ${matchedKey}`); } else { core.info(`${this.packageManager} cache is not found`); } - core.setOutput('cache-hit', Boolean(matchedKey)); + core.setOutput('cache-hit', matchedKey === primaryKey); } }