From f87b6913cd504df87b7ed71986369a833a4e9425 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 9 Mar 2020 14:32:18 -0700 Subject: [PATCH] Add package download step before pushing to feeds (#3162) Add package download step before publishing. --- .../azure-pipelines/nuget/templates/cpu-featurizers.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/ci_build/github/azure-pipelines/nuget/templates/cpu-featurizers.yml b/tools/ci_build/github/azure-pipelines/nuget/templates/cpu-featurizers.yml index 91c066a081..66aad37f56 100644 --- a/tools/ci_build/github/azure-pipelines/nuget/templates/cpu-featurizers.yml +++ b/tools/ci_build/github/azure-pipelines/nuget/templates/cpu-featurizers.yml @@ -181,6 +181,12 @@ jobs: - NuGet_Test_Linux - NuGet_Test_MacOS steps: + - task: DownloadPipelineArtifact@0 + displayName: 'Download Pipeline Artifact - Signed NuGet Package' + inputs: + artifactName: 'drop-signed-nuget' + targetPath: '$(Build.BinariesDirectory)/nuget-artifact/final-package' + - task: NuGetCommand@2 displayName: 'Copy Signed Native NuGet Package to ORT-NIGHTLY' condition: ne(variables['IsReleaseBuild'], 'true') # release build has a different package naming scheme