fix: needsPromotion fixed in deploy github actions (#1741)

This commit is contained in:
Eric Allam
2025-03-01 10:29:44 +00:00
committed by GitHub
parent 796e710439
commit e0241819a4
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"trigger.dev": patch
---
Fixes needsPromotion github action output
+1 -1
View File
@@ -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",
},
});
}