We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c260f6 commit 51e62a9Copy full SHA for 51e62a9
azure-pipelines.yml
@@ -86,11 +86,8 @@ stages:
86
runOnce:
87
deploy:
88
steps:
89
- - task: NuGetCommand@2
+ - task: NuGetToolInstaller@1
90
+ displayName: 'Install NuGet'
91
+ - script: nuget push $(Agent.BuildDirectory)/Windows/*.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey $(NuGetApiKey) -SkipDuplicate
92
displayName: 'NuGet Push'
- inputs:
- command: push
93
- nuGetFeedType: external
94
- packagesToPush: '$(Agent.BuildDirectory)/Windows/*.nupkg'
95
- publishFeedCredentials: NuGet
96
- allowPackageConflicts: true
+ failOnStderr: true
0 commit comments