Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion azure-pipelines-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,17 @@ steps:
# Make the nuget packages available for download in the ADO portal UI
- publish: $(build.artifactStagingDirectory)
displayName: 'Publish nuget packages to Artifacts'
artifact: PackageOutput
artifact: PackageOutput

# Next, push the payload to the ADO feed
- task: NuGetToolInstaller@1
displayName: 'Use NuGet '

- task: NuGetCommand@2
displayName: 'Push to durabletask ADO feed'
inputs:
command: push
feedsToUse: config
packagesToPush: '$(build.artifactStagingDirectory)/*.nupkg'
publishVstsFeed: '734e7913-2fab-4624-a174-bc57fe96f95d/d55248c1-5b53-411f-bfe7-73efc9e540d1'
allowPackageConflicts: true
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this mean? Why are we allowing package conflicts?