Update cache-distributor.ts

This commit is contained in:
Alexey 2022-04-03 20:41:15 +03:00 committed by dhvcc
parent 08415fd28f
commit 56d358493b

View file

@ -45,13 +45,13 @@ abstract class CacheDistributor {
} }
public handleMatchResult(matchedKey: string | undefined, primaryKey: string) { public handleMatchResult(matchedKey: string | undefined, primaryKey: string) {
if (matchedKey == primaryKey) { if (matchedKey) {
core.saveState(State.CACHE_MATCHED_KEY, matchedKey); core.saveState(State.CACHE_MATCHED_KEY, matchedKey);
core.info(`Cache restored from key: ${matchedKey}`); core.info(`Cache restored from key: ${matchedKey}`);
} else { } else {
core.info(`${this.packageManager} cache is not found`); core.info(`${this.packageManager} cache is not found`);
} }
core.setOutput('cache-hit', Boolean(matchedKey)); core.setOutput('cache-hit', matchedKey === primaryKey);
} }
} }