Skip to content

Commit

Permalink
Use another approach to push the symbol packages
Browse files Browse the repository at this point in the history
  • Loading branch information
marcovisserFurore committed Jul 7, 2022
1 parent afd2ceb commit fba000e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fba000e

Please sign in to comment.