@codedrifters/configulator 0.0.92 → 0.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +3 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -3
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1568,10 +1568,10 @@ var AwsDeployWorkflow = class _AwsDeployWorkflow extends import_projen9.Componen
|
|
|
1568
1568
|
const branchFilterCondition = this.buildBranchFilterCondition(
|
|
1569
1569
|
target.branches
|
|
1570
1570
|
);
|
|
1571
|
-
const jobCondition = branchFilterCondition ? [
|
|
1572
|
-
"
|
|
1571
|
+
const jobCondition = branchFilterCondition ? "${{ " + [
|
|
1572
|
+
"!needs.build.outputs.self_mutation_happened",
|
|
1573
1573
|
`(${branchFilterCondition})`
|
|
1574
|
-
].join(" && ") : "${{ !needs.build.outputs.self_mutation_happened }}";
|
|
1574
|
+
].join(" && ") + " }}" : "${{ !needs.build.outputs.self_mutation_happened }}";
|
|
1575
1575
|
this.buildWorkflow.addPostBuildJob(deployJobName, {
|
|
1576
1576
|
name: `Deploy ${this.project.name} ${target.awsStageType}/${target.deploymentTargetRole}/${target.account}/${target.region}`,
|
|
1577
1577
|
needs: [
|