diff --git a/dist/save/index.js b/dist/save/index.js index 1f6533a..853a18f 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -45471,6 +45471,7 @@ function run() { yield cache.saveCache(cachePaths, primaryKey, { uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) }); + core.info(`Cache saved with key: ${primaryKey}`); } catch (error) { if (error.name === cache.ValidationError.name) { diff --git a/src/save.ts b/src/save.ts index 1efbc24..5e52249 100644 --- a/src/save.ts +++ b/src/save.ts @@ -44,6 +44,7 @@ async function run(): Promise { await cache.saveCache(cachePaths, primaryKey, { uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize) }); + core.info(`Cache saved with key: ${primaryKey}`); } catch (error) { if (error.name === cache.ValidationError.name) { throw error;