Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2019-10-08 14:30:46 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-10-08 14:30:46 +0300
commit52c4d876330535d6571f2ced69bcb2f9c92f1712 (patch)
treebd07e13f29bdf072b3450ab49705a4c73f2f39f5 /eng/common/templates/job/execute-sdl.yml
parente8ed2494ca4af4d64706ac3ab06ba405391977c6 (diff)
Update dependencies from https://github.com/dotnet/arcade build 20191006.1 (#17214)
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19506.1 - Microsoft.DotNet.Helix.Sdk - 5.0.0-beta.19506.1
Diffstat (limited to 'eng/common/templates/job/execute-sdl.yml')
-rw-r--r--eng/common/templates/job/execute-sdl.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/eng/common/templates/job/execute-sdl.yml b/eng/common/templates/job/execute-sdl.yml
index a7f99641952..9a00430d652 100644
--- a/eng/common/templates/job/execute-sdl.yml
+++ b/eng/common/templates/job/execute-sdl.yml
@@ -24,15 +24,15 @@ jobs:
buildType: current
downloadType: specific files
matchingPattern: "**"
- downloadPath: $(Build.SourcesDirectory)\artifacts
+ downloadPath: $(Build.ArtifactStagingDirectory)\artifacts
- powershell: eng/common/sdl/extract-artifact-packages.ps1
- -InputPath $(Build.SourcesDirectory)\artifacts\BlobArtifacts
- -ExtractPath $(Build.SourcesDirectory)\artifacts\BlobArtifacts
+ -InputPath $(Build.ArtifactStagingDirectory)\artifacts\BlobArtifacts
+ -ExtractPath $(Build.ArtifactStagingDirectory)\artifacts\BlobArtifacts
displayName: Extract Blob Artifacts
continueOnError: ${{ parameters.sdlContinueOnError }}
- powershell: eng/common/sdl/extract-artifact-packages.ps1
- -InputPath $(Build.SourcesDirectory)\artifacts\PackageArtifacts
- -ExtractPath $(Build.SourcesDirectory)\artifacts\PackageArtifacts
+ -InputPath $(Build.ArtifactStagingDirectory)\artifacts\PackageArtifacts
+ -ExtractPath $(Build.ArtifactStagingDirectory)\artifacts\PackageArtifacts
displayName: Extract Package Artifacts
continueOnError: ${{ parameters.sdlContinueOnError }}
- task: NuGetToolInstaller@1