From c4e65bb55335a7b49457b49f9ea394883a266de7 Mon Sep 17 00:00:00 2001 From: Matt Mitchell <mmitche@microsoft.com> Date: Tue, 10 Nov 2020 12:35:49 -0800 Subject: [PATCH] Don't push to VS feed when post build sign == true (#27265) --- .azure/pipelines/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml index 4401e6a4a15..177fbcfe9f3 100644 --- a/.azure/pipelines/ci.yml +++ b/.azure/pipelines/ci.yml @@ -316,7 +316,7 @@ stages: displayName: Build Arm64 Installers # A few files must also go to the VS package feed. - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), ne(variables['PostBuildSign'], 'true')) }}: - task: NuGetCommand@2 displayName: Push Visual Studio packages inputs: -- GitLab