Log cache entry on save

This commit is contained in:
Daz DeBoer 2021-08-22 14:57:18 -06:00
parent d432f2086c
commit a63892c289
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
4 changed files with 6 additions and 2 deletions

2
dist/main/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/post/index.js vendored

File diff suppressed because one or more lines are too long

View file

@ -86,6 +86,8 @@ export async function cacheConfiguration(): Promise<void> {
return
}
core.info(`Will cache configuration with key ${cacheKey}`)
try {
await cache.saveCache([cachePath], cacheKey)
} catch (error) {

View file

@ -73,6 +73,8 @@ export async function cacheDependencies(): Promise<void> {
return
}
core.info(`Will cache dependencies with key ${cacheKey}`)
try {
await cache.saveCache([cachePath], cacheKey)
} catch (error) {