Skip to content

Commit 9060d69

Browse files
authored
fix: add log entries before and after CodeBuild activity to differentiate GitHub log activity from CodeBuild log activity (#22)
add log entries before and after CodeBuild activity to differentiate GitHub log activity from CodeBuild log activity.
1 parent b51866c commit 9060d69

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

index.js

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ if (require.main === module) {
1313
module.exports = run;
1414

1515
async function run() {
16+
console.log("*****STARTING CODEBUILD*****");
1617
try {
1718
const build = await runBuild();
1819
core.setOutput("aws-build-id", build.id);
@@ -24,5 +25,7 @@ async function run() {
2425
);
2526
} catch (error) {
2627
core.setFailed(error.message);
28+
} finally {
29+
console.log("*****CODEBUILD COMPLETE*****");
2730
}
2831
}

0 commit comments

Comments
 (0)