Skip to content

Commit

Permalink
[devops] Look in the correct directory for the API diff results. (xam…
Browse files Browse the repository at this point in the history
…arin#20624)

Fixes this failure:

> 🔥 Unable to find the contents for the comment: D:\a\1\a\change-detection\results\gh-comment.md does not exist :fire

This is a partial revert of xamarin#20601, which broke the API diff.
  • Loading branch information
rolfbjarne authored May 23, 2024
1 parent a9b2314 commit 26e6bb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ steps:
Import-Module $Env:SYSTEM_DEFAULTWORKINGDIRECTORY\xamarin-macios\tools\devops\automation\scripts\MaciosCI.psd1
$vsdropsChangeDetectionPrefix = "https://vsdrop.corp.microsoft.com/file/v1/xamarin-macios/detected-changes/$Env:BUILD_BUILDNUMBER/$Env:BUILD_BUILDID-$Env:SYSTEM_JOBATTEMPT/;/"
$rootDirectory = Join-Path "$Env:BUILD_ARTIFACTSTAGINGDIRECTORY" "change-detection" "results"
$rootDirectory = Join-Path "$Env:SYSTEM_DEFAULTWORKINGDIRECTORY" "change-detection" "results"
$inputContentsPath = Join-Path -Path $rootDirectory -ChildPath "gh-comment.md"
if (Test-Path $inputContentsPath -PathType leaf) {
Expand Down

0 comments on commit 26e6bb8

Please sign in to comment.