We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c39e805 commit 76aa9ebCopy full SHA for 76aa9eb
post.ts
@@ -19,9 +19,10 @@ const main = async () => {
19
core.debug(JSON.stringify({ imageIdsToSave: imageDetector.getImagesShouldSave() }))
20
const layerCache = new LayerCache(imageDetector.getImagesShouldSave())
21
22
+ layerCache.originalKeyThatMayUnformatted = primaryKey
23
core.debug(JSON.stringify({ restoredKey, formattedOriginalCacheKey: layerCache.getFormattedOriginalCacheKey()}))
24
if (restoredKey !== `` && restoredKey === layerCache.getFormattedOriginalCacheKey()) {
- core.info(`Key ${restoredKey} already exists, aborting.`)
25
+ core.info(`Key ${restoredKey} already exists, skip storing.`)
26
return
27
}
28
await layerCache.store(primaryKey)
0 commit comments