Skip to content

Commit 8b1aaf9

Browse files
authored
Fix broken CI
CI has been broken because the build matrix for Desktop did not set UseFabric for most configs, which is used to set the artifactName parameter to the publish-build-artifacts template. Changed from if x == true, if x == false to if x == true, else.
1 parent 97d7288 commit 8b1aaf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ado/jobs/desktop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
parameters:
205205
${{ if eq(matrix.UseFabric, true) }}:
206206
artifactName: DesktopFabric
207-
${{ if eq(matrix.UseFabric, false) }}:
207+
${{ else }}:
208208
artifactName: Desktop
209209
buildPlatform: ${{ matrix.BuildPlatform }}
210210
buildConfiguration: ${{ matrix.BuildConfiguration }}

0 commit comments

Comments
 (0)