From 60166a811e8e8441d496838504cce0b8416b5255 Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Tue, 10 Dec 2019 16:53:50 -0800 Subject: [PATCH] Fix the expected folder names of the artifact --- tools/releaseBuild/yaml/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/releaseBuild/yaml/publish.yml b/tools/releaseBuild/yaml/publish.yml index 51e1ad0..5dd3efc 100644 --- a/tools/releaseBuild/yaml/publish.yml +++ b/tools/releaseBuild/yaml/publish.yml @@ -23,11 +23,11 @@ stages: artifact: finalResults - powershell: | - Get-ChildItem -Recurse "$(Pipeline.Workspace)/release" + Get-ChildItem -Recurse "$(Pipeline.Workspace)/finalResults" displayName: Capture downloaded artifact - powershell: | - Copy-Item "$(Pipeline.Workspace)/release/Microsoft.PowerShell.Native.*.nupkg" -Destination "$(Build.ArtifactStagingDirectory)" -Force + Copy-Item "$(Pipeline.Workspace)/finalResults/Microsoft.PowerShell.Native.*.nupkg" -Destination "$(Build.ArtifactStagingDirectory)" -Force Get-ChildItem "$(Build.ArtifactStagingDirectory)/Microsoft.PowerShell.Native.*.nupkg" displayName: 'Copy and Capture NuGet package'