File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ stages:
478
478
targetPath : ' $(Build.StagingDirectory)'
479
479
artifact : ' Signed_Binaries'
480
480
- task : GitHubRelease@1
481
+ displayName : Release to GitHub
481
482
inputs :
482
483
gitHubConnection : ' AppInspector'
483
484
repositoryName : ' microsoft/ApplicationInspector'
@@ -492,9 +493,18 @@ stages:
492
493
changeLogCompareToRelease : ' lastNonDraftRelease'
493
494
changeLogType : ' commitBased'
494
495
- task : NuGetCommand@2
496
+ displayName : Push NuGet Packages
495
497
inputs :
496
498
command : ' push'
497
- packagesToPush : ' $(Build.StagingDirectory)/*.nupkg, $(Build.StagingDirectory)/*.snupkg '
499
+ packagesToPush : ' $(Build.StagingDirectory)/*.nupkg'
498
500
nuGetFeedType : ' external'
499
501
publishFeedCredentials : ' CST-E Nuget CI'
500
502
verbosityPush : ' Normal'
503
+ - task : NuGetCommand@2
504
+ displayName : Push NuGet Symbols
505
+ inputs :
506
+ command : ' push'
507
+ packagesToPush : ' $(Build.StagingDirectory)/*.snupkg'
508
+ nuGetFeedType : ' external'
509
+ publishFeedCredentials : ' CST-E Nuget CI'
510
+ verbosityPush : ' Normal'
You can’t perform that action at this time.
0 commit comments