From 8773fc7d2af707f363ecc4002585f10992949d5c Mon Sep 17 00:00:00 2001 From: Manuel de la Pena Date: Tue, 2 Mar 2021 14:51:27 -0500 Subject: [PATCH] [CI][VSTS] VSDrops urls are case-sensitive. (#10740) Example: * Wrong - https://vsdrop.corp.microsoft.com/file/v1/xamarin-macios/device-tests/20210226.4/4505964/APIDiff/;/mac-api-diff.html * Correct - https://vsdrop.corp.microsoft.com/file/v1/xamarin-macios/device-tests/20210226.4/4505964/apidiff/;/mac-api-diff.html --- tools/devops/automation/templates/build/publish-html.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/devops/automation/templates/build/publish-html.yml b/tools/devops/automation/templates/build/publish-html.yml index 437970661c..221a95450a 100644 --- a/tools/devops/automation/templates/build/publish-html.yml +++ b/tools/devops/automation/templates/build/publish-html.yml @@ -64,7 +64,7 @@ steps: $gists["index"] = $url # similar dict but for the html links from vsdrops - $apiDiffRoot="$Env:VSDROPSPREFIX/$Env:BUILD_BUILDNUMBER/$Env:BUILD_BUILDID/APIDiff/;/" + $apiDiffRoot="$Env:VSDROPSPREFIX/$Env:BUILD_BUILDNUMBER/$Env:BUILD_BUILDID/apidiff/;/" $html = @{ "iOS" = $apiDiffRoot + "ios-api-diff.html"; "macOS" = $apiDiffRoot + "mac-api-diff.html";