From fba000ee82f33b30729b9bd7b0b8886c71ca8af0 Mon Sep 17 00:00:00 2001 From: Marco Visser Date: Thu, 7 Jul 2022 16:00:26 +0200 Subject: [PATCH] Use another approach to push the symbol packages --- build/azure-pipelines.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index 9d18f4d657..4d868ed955 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -256,55 +256,55 @@ stages: condition: and(succeeded(), endswith(variables['Build.SourceBranch'], '-dstu2')) inputs: command: push - packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*DSTU2*.*nupkg' + packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*DSTU2*.nupkg' nuGetFeedType: external publishFeedCredentials: NuGet verbosityPush: normal - includeSymbols: false + includeSymbols: true - task: NuGetCommand@2 displayName: 'NuGet Push STU3 packages only and common packages' condition: and(succeeded(), endswith(variables['Build.SourceBranch'], '-stu3')) inputs: command: push - packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*.*nupkg' + packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*.nupkg' nuGetFeedType: external publishFeedCredentials: NuGet verbosityPush: normal - includeSymbols: false + includeSymbols: true - task: NuGetCommand@2 displayName: 'NuGet Push R4 packages only' condition: and(succeeded(), endswith(variables['Build.SourceBranch'], '-r4')) inputs: command: push - packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*R4*.*nupkg' + packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*R4*.nupkg' nuGetFeedType: external publishFeedCredentials: NuGet verbosityPush: normal - includeSymbols: false + includeSymbols: true - task: NuGetCommand@2 displayName: 'NuGet Push R4B packages only' condition: and(succeeded(), endswith(variables['Build.SourceBranch'], '-r4B')) inputs: command: push - packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*R4B*.*nupkg' + packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*R4B*.nupkg' nuGetFeedType: external publishFeedCredentials: NuGet verbosityPush: normal - includeSymbols: false + includeSymbols: true - task: NuGetCommand@2 displayName: 'NuGet Push R5 packages only' condition: and(succeeded(), endswith(variables['Build.SourceBranch'], '-r5')) inputs: command: push - packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*R5*.*nupkg' + packagesToPush: '$(Agent.BuildDirectory)/NuGetPackages/*R5*.nupkg' nuGetFeedType: external publishFeedCredentials: NuGet verbosityPush: normal - includeSymbols: false + includeSymbols: true - deployment: relNotes displayName: Release Notes