Tweak warning message

This commit is contained in:
daz 2025-04-02 12:38:50 -06:00
parent d0cb65a5bc
commit bc00207b7b
No known key found for this signature in database

View File

@ -41,7 +41,7 @@ export function handlePostActionError(error: unknown): void {
core.info(error.stack)
}
} else {
core.warning(`Unhandled error in Gradle post-action - job will continue: ${error}`)
core.warning(`Unhandled error in Gradle post-action. Job will continue: ${error}`)
if (error instanceof Error && error.stack) {
core.info(error.stack)
}