mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-06-05 07:46:11 +02:00
Log stack trace for cache errors
This commit is contained in:
parent
f1d0d15603
commit
0d13054264
5 changed files with 7 additions and 4 deletions
|
@ -103,6 +103,9 @@ export function handleCacheFailure(error: unknown, message: string): void {
|
|||
} else {
|
||||
// Warn on all other errors
|
||||
core.warning(`${message}: ${error}`)
|
||||
if (error instanceof Error && error.stack) {
|
||||
cacheDebug(error.stack)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue