From 192594e853a7ddf5874768dd2d9690970237beaf Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Sun, 31 Jul 2022 21:41:21 +0200 Subject: [PATCH] ci/cd: build linux-musl artifacts, fix publishing (#13438) --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b2d8f9cc2..304c988ea 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -629,6 +629,6 @@ stages: $successCount = (Select-String "Uploaded file successfully:" -InputObject $logInspect -AllMatches).Matches.Count $failureCount = (Select-String "Duplicate asset found:" -InputObject $logInspect -AllMatches).Matches.Count Write-Output "Success count is: $successCount and failure count is: $failureCount" - if (($successCount -ne 8) -or ($failureCount -ne 0)) { Write-Host "##vso[task.complete result=Failed;]DONE" } + if (($successCount -ne 11) -or ($failureCount -ne 0)) { Write-Host "##vso[task.complete result=Failed;]DONE" } } }