Skip to content

Commit 25d9284

Browse files
committed
Update core-pipeline.yml for Azure Pipelines
1 parent d4b09fc commit 25d9284

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Pipelines/core-pipeline.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ stages:
478478
targetPath: '$(Build.StagingDirectory)'
479479
artifact: 'Signed_Binaries'
480480
- task: GitHubRelease@1
481+
displayName: Release to GitHub
481482
inputs:
482483
gitHubConnection: 'AppInspector'
483484
repositoryName: 'microsoft/ApplicationInspector'
@@ -492,9 +493,18 @@ stages:
492493
changeLogCompareToRelease: 'lastNonDraftRelease'
493494
changeLogType: 'commitBased'
494495
- task: NuGetCommand@2
496+
displayName: Push NuGet Packages
495497
inputs:
496498
command: 'push'
497-
packagesToPush: '$(Build.StagingDirectory)/*.nupkg, $(Build.StagingDirectory)/*.snupkg'
499+
packagesToPush: '$(Build.StagingDirectory)/*.nupkg'
498500
nuGetFeedType: 'external'
499501
publishFeedCredentials: 'CST-E Nuget CI'
500502
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'

0 commit comments

Comments
 (0)