Skip to content

Commit edb76a3

Browse files
committed
Fix needsPromotion output in github actions
1 parent e1db12b commit edb76a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) {
501501
testUrl: `${authorization.dashboardUrl}/projects/v3/${
502502
resolvedConfig.project
503503
}/test?environment=${options.env === "prod" ? "prod" : "stg"}`,
504-
needsPromotion: options.skipPromotion ? "false" : "true",
504+
needsPromotion: options.skipPromotion ? "true" : "false",
505505
},
506506
});
507507
}

0 commit comments

Comments
 (0)