From 046710c449bd475232d601cd5e8339b95c640b51 Mon Sep 17 00:00:00 2001 From: Jonathan Kelley Date: Tue, 28 Jan 2025 18:24:39 -0800 Subject: [PATCH] add incremental flag to constructor --- src/config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.ts b/src/config.ts index 08a6490..c71db36 100644 --- a/src/config.ts +++ b/src/config.ts @@ -62,6 +62,8 @@ export class CacheConfig { let key = core.getInput("prefix-key") || "v0-rust"; + self.incremental = core.getInput("incremental").toLowerCase() == "true"; + const sharedKey = core.getInput("shared-key"); if (sharedKey) { key += `-${sharedKey}`;