From e169ab01dd57abfbc5957d2812f7c484146205c7 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Sat, 5 Oct 2024 14:10:59 +0100 Subject: [PATCH 1/2] include push output in logs --- packages/cli-v3/src/deploy/buildImage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli-v3/src/deploy/buildImage.ts b/packages/cli-v3/src/deploy/buildImage.ts index db933fa5b2..5a53e30f17 100644 --- a/packages/cli-v3/src/deploy/buildImage.ts +++ b/packages/cli-v3/src/deploy/buildImage.ts @@ -362,6 +362,7 @@ async function selfHostedBuildImage( for await (const line of pushProcess) { logger.debug(line); + errors.push(line); } if (pushProcess.exitCode !== 0) { From 3cd7bf63581496c87836c2e0c2a9baa329f5b58f Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Sat, 5 Oct 2024 14:12:10 +0100 Subject: [PATCH 2/2] changeset --- .changeset/three-ducks-act.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/three-ducks-act.md diff --git a/.changeset/three-ducks-act.md b/.changeset/three-ducks-act.md new file mode 100644 index 0000000000..a4d35b6e28 --- /dev/null +++ b/.changeset/three-ducks-act.md @@ -0,0 +1,5 @@ +--- +"trigger.dev": patch +--- + +Always include push output in logs for self-hosted deploys