diff --git a/.changeset/silent-squids-glow.md b/.changeset/silent-squids-glow.md new file mode 100644 index 0000000000..d78c7c98f7 --- /dev/null +++ b/.changeset/silent-squids-glow.md @@ -0,0 +1,5 @@ +--- +"trigger.dev": patch +--- + +Fixes needsPromotion github action output diff --git a/packages/cli-v3/src/commands/deploy.ts b/packages/cli-v3/src/commands/deploy.ts index 35478581da..003a8bd05b 100644 --- a/packages/cli-v3/src/commands/deploy.ts +++ b/packages/cli-v3/src/commands/deploy.ts @@ -501,7 +501,7 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) { testUrl: `${authorization.dashboardUrl}/projects/v3/${ resolvedConfig.project }/test?environment=${options.env === "prod" ? "prod" : "stg"}`, - needsPromotion: options.skipPromotion ? "false" : "true", + needsPromotion: options.skipPromotion ? "true" : "false", }, }); }