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);