From d7b864c2580382a45bbbad54db6be2eba81b670c Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Mon, 21 Nov 2022 12:33:47 +0000 Subject: [PATCH] updated --- dist/save/index.js | 2 ++ src/save.ts | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dist/save/index.js b/dist/save/index.js index b4d2721..facaaf8 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -47300,6 +47300,8 @@ function run() { return; } const state = utils.getCacheState(); + core.info(core.getState(constants_1.State.SaveCache)); + core.info(core.getState(constants_1.State.CachePrimaryKey)); // Inputs are re-evaluted before the post action, so we want the original key used for restore const primaryKey = core.getState(constants_1.State.CachePrimaryKey) || core.getInput(constants_1.Inputs.Key); if (!primaryKey) { diff --git a/src/save.ts b/src/save.ts index d30f553..88ff7bc 100644 --- a/src/save.ts +++ b/src/save.ts @@ -25,7 +25,8 @@ async function run(): Promise { } const state = utils.getCacheState(); - + core.info(core.getState(State.SaveCache)); + core.info(core.getState(State.CachePrimaryKey)); // Inputs are re-evaluted before the post action, so we want the original key used for restore const primaryKey = core.getState(State.CachePrimaryKey) || core.getInput(Inputs.Key);