This commit is contained in:
2023-12-02 19:58:24 +01:00
parent a2a8c43be7
commit c1fb516716
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ try {
}
}
catch (error) {
console.log('Failed to build docker image', e);
console.log('Failed to build docker image', error);
core.setFailed(error.message);
process.exit(1);
}
+1 -1
View File
@@ -58,7 +58,7 @@ export function mergeArgRegistryAuthJson(registryAuthJson) {
}
}
catch (error) {
console.log('Failed to parse registry auth json', e);
console.log('Failed to parse registry auth json', error);
core.setFailed(error.message);
process.exit(1);
}