From 964ec494e4b43ba50272ed32eb598348fbd29cd9 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Mon, 20 Nov 2017 09:03:57 -0800 Subject: [PATCH] Move symbol deployment after sign --- build/scripts/build.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/scripts/build.ps1 b/build/scripts/build.ps1 index 3a1739a12e5..484002282d0 100644 --- a/build/scripts/build.ps1 +++ b/build/scripts/build.ps1 @@ -183,16 +183,16 @@ function Build-Artifacts() { if ($pack) { Build-NuGetPackages - - if ($cibuild -or $official) { - Build-DeployToSymStore - } } if ($sign) { Run-SignTool } + if ($pack -and ($cibuild -or $official)) { + Build-DeployToSymStore + } + if ($buildAll) { Build-InsertionItems } -- GitLab