We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3baf462 commit 5a9fc07Copy full SHA for 5a9fc07
build/pipelines/templates-v2/job-pgo-build-nuget-and-publish.yml
@@ -77,12 +77,6 @@ jobs:
77
artifact: pgo-nupkg-${{ parameters.buildConfiguration }}${{ parameters.artifactStem }}
78
displayName: "Publish Pipeline Artifact"
79
80
- - task: 333b11bd-d341-40d9-afcf-b32d5ce6f23b@2
81
- displayName: 'NuGet push'
82
- inputs:
83
- command: push
84
- nuGetFeedType: external
85
- packagesToPush: $(Build.ArtifactStagingDirectory)/*.nupkg
86
- # The actual URL and PAT for this feed is configured at
87
- feedsToUse: config
88
- nugetConfigPath: '$(Build.SourcesDirectory)/build/pgo_nuget.config'
+ - pwsh: |-
+ & nuget push -ConfigFile '$(Build.SourcesDirectory)/build/pgo_nuget.config' -Source TerminalDependencies $(Build.ArtifactStagingDirectory)/*.nupkg
+ displayName: NuGet push
0 commit comments