We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51866c commit 9060d69Copy full SHA for 9060d69
index.js
@@ -13,6 +13,7 @@ if (require.main === module) {
13
module.exports = run;
14
15
async function run() {
16
+ console.log("*****STARTING CODEBUILD*****");
17
try {
18
const build = await runBuild();
19
core.setOutput("aws-build-id", build.id);
@@ -24,5 +25,7 @@ async function run() {
24
25
);
26
} catch (error) {
27
core.setFailed(error.message);
28
+ } finally {
29
+ console.log("*****CODEBUILD COMPLETE*****");
30
}
31
0 commit comments