@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.mjs
CHANGED
|
@@ -1555,10 +1555,10 @@ var AwsDeployWorkflow = class _AwsDeployWorkflow extends Component10 {
|
|
|
1555
1555
|
const branchFilterCondition = this.buildBranchFilterCondition(
|
|
1556
1556
|
target.branches
|
|
1557
1557
|
);
|
|
1558
|
-
const jobCondition = branchFilterCondition ? [
|
|
1559
|
-
"
|
|
1558
|
+
const jobCondition = branchFilterCondition ? "${{ " + [
|
|
1559
|
+
"!needs.build.outputs.self_mutation_happened",
|
|
1560
1560
|
`(${branchFilterCondition})`
|
|
1561
|
-
].join(" && ") : "${{ !needs.build.outputs.self_mutation_happened }}";
|
|
1561
|
+
].join(" && ") + " }}" : "${{ !needs.build.outputs.self_mutation_happened }}";
|
|
1562
1562
|
this.buildWorkflow.addPostBuildJob(deployJobName, {
|
|
1563
1563
|
name: `Deploy ${this.project.name} ${target.awsStageType}/${target.deploymentTargetRole}/${target.account}/${target.region}`,
|
|
1564
1564
|
needs: [
|