diff options
author | Matt Galbraith <MattGal@users.noreply.github.com> | 2017-11-07 12:36:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 12:36:14 -0800 |
commit | 60b64024a8b3143bda3b2d2cd66b8f62decb4cdb (patch) | |
tree | 13e870f11b7a2e1f2b6850b66b0f60f464eacbdd /buildpipeline | |
parent | 0ebac684a3c76c09c731cb53fa68c15444df9255 (diff) | |
download | coreclr-60b64024a8b3143bda3b2d2cd66b8f62decb4cdb.tar.gz coreclr-60b64024a8b3143bda3b2d2cd66b8f62decb4cdb.tar.bz2 coreclr-60b64024a8b3143bda3b2d2cd66b8f62decb4cdb.zip |
Fix Conditional Task Expressions
Other conditions in the folder look OK.
Diffstat (limited to 'buildpipeline')
-rw-r--r-- | buildpipeline/DotNet-Trusted-Publish.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/buildpipeline/DotNet-Trusted-Publish.json b/buildpipeline/DotNet-Trusted-Publish.json index 2bb1451664..ccdf24cac6 100644 --- a/buildpipeline/DotNet-Trusted-Publish.json +++ b/buildpipeline/DotNet-Trusted-Publish.json @@ -179,7 +179,7 @@ "alwaysRun": false, "displayName": "packages -> dotnet.myget.org", "timeoutInMinutes": 0, - "condition": "and(succeeded(), contains(variables.PB_PublishType, 'myget'), eq(ConfigurationGroup, 'Release'))", + "condition": "and(succeeded(), contains(variables.PB_PublishType, 'myget'), eq(variables.ConfigurationGroup, 'Release'))", "task": { "id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1", "versionSpec": "1.*", @@ -200,7 +200,7 @@ "alwaysRun": false, "displayName": "symbol packages -> dotnet.myget.org", "timeoutInMinutes": 0, - "condition": "and(succeeded(), contains(variables.PB_PublishType, 'myget'), eq(ConfigurationGroup, 'Release'))", + "condition": "and(succeeded(), contains(variables.PB_PublishType, 'myget'), eq(variables.ConfigurationGroup, 'Release'))", "task": { "id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1", "versionSpec": "1.*", @@ -221,7 +221,7 @@ "alwaysRun": false, "displayName": "Packages -> Blob Feed", "timeoutInMinutes": 0, - "condition": "and(succeeded(), contains(variables.PB_PublishType, 'blob'), eq(variables.ConfigurationGroup'], 'Release'))", + "condition": "and(succeeded(), contains(variables.PB_PublishType, 'blob'), eq(variables.ConfigurationGroup, 'Release'))", "task": { "id": "d9bafed4-0b18-4f58-968d-86655b4d2ce9", "versionSpec": "1.*", @@ -240,7 +240,7 @@ "alwaysRun": false, "displayName": "Symbol Packages -> Blob Feed", "timeoutInMinutes": 0, - "condition": "and(succeeded(), contains(variables.PB_PublishType, 'blob'), eq(variables.ConfigurationGroup'], 'Release'))", + "condition": "and(succeeded(), contains(variables.PB_PublishType, 'blob'), eq(variables.ConfigurationGroup, 'Release'))", "task": { "id": "d9bafed4-0b18-4f58-968d-86655b4d2ce9", "versionSpec": "1.*", @@ -299,7 +299,7 @@ "alwaysRun": false, "displayName": "Update versions repository", "timeoutInMinutes": 0, - "condition": "and(succeeded(), contains(variables.PB_PublishType, 'versions'), eq(variables.ConfigurationGroup'], 'Release'))", + "condition": "and(succeeded(), contains(variables.PB_PublishType, 'versions'), eq(variables.ConfigurationGroup, 'Release'))", "task": { "id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1", "versionSpec": "1.*", @@ -682,4 +682,4 @@ "state": "wellFormed", "revision": 418097633 } -}
\ No newline at end of file +} |