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 58f9ebe commit 8f611caCopy full SHA for 8f611ca
entrypoint.sh
@@ -130,8 +130,8 @@ annotate() {
130
exit "${ORCA_EXIT_CODE}"
131
fi
132
mkdir -p "/app/${OUTPUT_FOR_JSON}"
133
- cp "${OUTPUT_FOR_JSON}/iac.json" "/app/${OUTPUT_FOR_JSON}/"
134
- cd /app || exit_with_err "error during annotations initiation"
+ cp "${OUTPUT_FOR_JSON}/iac.json" "/app/${OUTPUT_FOR_JSON}/" || exit_with_err "error during annotations initiation"
+ cd /app
135
npm run build --if-present
136
node dist/index.js
137
}
src/main.js
@@ -24,6 +24,7 @@ function main() {
24
setWorkflowStatus(process.env.ORCA_EXIT_CODE);
25
} catch (e) {
26
console.error(e);
27
+ setWorkflowStatus(process.env.ORCA_EXIT_CODE);
28
29
30
0 commit comments