oceanexplorer
oceanexplorer

Reputation: 1229

Azure Devops - Accessing artifact feed in release pipeline task

I have a Nuget Push task in an Azure DevOps release definition, I also have artifact feeds but they refuse to show up as an option in the NuGet Push task:

NuGet Push task

I've checked and my user has the package management extension Package Management Extension

I've checked that the Project Collection Build Service is a contributor on the feed:

Feed Settings

I'm on a trial license of the Package Management extension but it has 9 days remaining. So I'm at a loss as to what else I need to do to get the feed to be used in the task. Any pointers would be gratefully received!

Upvotes: 0

Views: 1421

Answers (2)

Chris L.
Chris L.

Reputation: 100

I'm the one who posted the very same issue here No artifact feeds found in Azure DevOps

The problem seems to have been fixed now. I'm able to select my feeds. Can you confirm this, oceanexplorer?

Upvotes: 1

Josh Gust
Josh Gust

Reputation: 4445

Well, I don't know why the feed isn't showing up in the drop down like it should be, but here's a workaround.

Create a new Service Connection

enter image description here


  • Generate a new PAT with Packaging Read/Write
  • Use "Basic Authentication"
  • Name the service connection
  • Get the url to the feed from the "Connect to this feed" menu in the artifacts area
  • Use any username
  • Enter the PAT

enter image description here


Use the Service Connection as "external" feed on pipeline

enter image description here

Upvotes: 0

Related Questions