mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-03 21:17:47 +02:00
updated
This commit is contained in:
parent
28ac5a0345
commit
d7b864c258
2 changed files with 4 additions and 1 deletions
2
dist/save/index.js
vendored
2
dist/save/index.js
vendored
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue