Skip to content

Commit a69e04f

Browse files
authored
Include push output in logs for self-hosted deploys (#1382)
* include push output in logs * changeset
1 parent c5488df commit a69e04f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changeset/three-ducks-act.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
Always include push output in logs for self-hosted deploys

packages/cli-v3/src/deploy/buildImage.ts

+1
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ async function selfHostedBuildImage(
362362

363363
for await (const line of pushProcess) {
364364
logger.debug(line);
365+
errors.push(line);
365366
}
366367

367368
if (pushProcess.exitCode !== 0) {

0 commit comments

Comments
 (0)