1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-05 05:47:48 +02:00

Updated input for save

This commit is contained in:
Sankalp Kotewar 2022-11-14 10:55:36 +00:00 committed by GitHub
parent be3863f944
commit 70576fc9a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

3
dist/save/index.js vendored
View file

@ -47298,7 +47298,8 @@ function run() {
}
const state = utils.getCacheState();
// 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);
//const primaryKey = core.getState(State.CachePrimaryKey);
const primaryKey = core.getInput(constants_1.Inputs.Key);
if (!primaryKey) {
utils.logWarning(`Error retrieving key from state.`);
return;

View file

@ -27,7 +27,8 @@ async function run(): Promise<void> {
const state = utils.getCacheState();
// Inputs are re-evaluted before the post action, so we want the original key used for restore
const primaryKey = core.getState(State.CachePrimaryKey);
//const primaryKey = core.getState(State.CachePrimaryKey);
const primaryKey = core.getInput(Inputs.Key);
if (!primaryKey) {
utils.logWarning(`Error retrieving key from state.`);
return;