1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-04 21:37:47 +02:00
This commit is contained in:
Sankalp Kotewar 2022-11-21 12:33:47 +00:00 committed by GitHub
parent 28ac5a0345
commit d7b864c258
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

2
dist/save/index.js vendored
View file

@ -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) {

View file

@ -25,7 +25,8 @@ async function run(): Promise<void> {
}
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);