Skip to content

Commit 4f18c9c

Browse files
committed
pr feedback
1 parent 7c89090 commit 4f18c9c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/model/cloud-runner/workflows/build-automation-workflow.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,10 @@ echo "CACHE_KEY=$CACHE_KEY"`;
195195
chmod -R +x "/entrypoint.sh"
196196
chmod -R +x "/steps"
197197
{ echo "game ci start"; echo "game ci start" >> /home/job-log.txt; echo "CACHE_KEY=$CACHE_KEY"; echo "$CACHE_KEY"; if [ -n "$LOCKED_WORKSPACE" ]; then echo "Retained Workspace: true"; fi; if [ -n "$LOCKED_WORKSPACE" ] && [ -d "$GITHUB_WORKSPACE/.git" ]; then echo "Retained Workspace Already Exists!"; fi; /entrypoint.sh; } | node ${builderPath} -m remote-cli-log-stream --logFile /home/job-log.txt
198-
node ${builderPath} -m remote-cli-post-build`;
198+
# Run post-build and ensure output is captured in logs
199+
node ${builderPath} -m remote-cli-post-build | node ${builderPath} -m remote-cli-log-stream --logFile /home/job-log.txt || true
200+
echo "end of cloud runner job"
201+
echo "---${CloudRunner.buildParameters.logId}"`;
199202
}
200203

201204
// prettier-ignore

0 commit comments

Comments
 (0)