[bot] Update dist directory

This commit is contained in:
bigdaz
2024-04-19 16:25:39 +00:00
committed by github-actions[bot]
parent d124ec149f
commit 9ab93ee864
10 changed files with 44 additions and 20 deletions

View File

@@ -90294,6 +90294,9 @@ function handleMainActionError(error) {
}
else if (error instanceof JobFailure) {
core.setFailed(String(error));
if (error.stack) {
core.info(error.stack);
}
}
else {
core.setFailed(String(error));
@@ -90306,6 +90309,9 @@ exports.handleMainActionError = handleMainActionError;
function handlePostActionError(error) {
if (error instanceof JobFailure) {
core.setFailed(String(error));
if (error.stack) {
core.info(error.stack);
}
}
else {
core.warning(`Unhandled error in Gradle post-action - job will continue: ${error}`);