From 9aaed35a0798ca4d786ac6dd1bcdfd24d2909eb0 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 21 Nov 2022 10:16:12 +0000 Subject: [PATCH] test --- dist/restore/index.js | 1 + src/restore.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/restore/index.js b/dist/restore/index.js index 710969c..3a03c9a 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -48993,6 +48993,7 @@ function run() { core.saveState(constants_1.State.SaveCache, saveCache); core.info(`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`); core.info(core.getState(constants_1.State.SaveCache)); + core.info(core.getState(constants_1.State.CachePrimaryKey)); } if (!cacheKey) { if (core.getInput(constants_1.Inputs.StrictRestore) == "true") { diff --git a/src/restore.ts b/src/restore.ts index ad2ef52..3673ace 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -43,6 +43,7 @@ async function run(): Promise { `Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.` ); core.info(core.getState(State.SaveCache)); + core.info(core.getState(State.CachePrimaryKey)); } if (!cacheKey) {