mirror of
https://github.com/gradle/actions.git
synced 2025-11-26 17:09:10 +08:00
[bot] Update dist directory
This commit is contained in:
committed by
github-actions[bot]
parent
d124ec149f
commit
9ab93ee864
6
dist/wrapper-validation/main/index.js
vendored
6
dist/wrapper-validation/main/index.js
vendored
@@ -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}`);
|
||||
|
||||
Reference in New Issue
Block a user