From 5bbbdb911510b4a5e75004a05162562f6c4c0c0b Mon Sep 17 00:00:00 2001 From: Jonathan Kelley Date: Tue, 28 Jan 2025 23:20:55 -0800 Subject: [PATCH] save state with incremental --- dist/restore/index.js | 1 + src/restore.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/restore/index.js b/dist/restore/index.js index dc66796..8005768 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -87407,6 +87407,7 @@ async function run() { lib_core.debug(`${err.stack}`); match = false; } + config.saveState(); } setCacheHitOutput(match); } diff --git a/src/restore.ts b/src/restore.ts index 9a8c7e9..dcd1caa 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -88,6 +88,7 @@ async function run() { core.debug(`${(err as any).stack}`); match = false; } + config.saveState(); } setCacheHitOutput(match);