3
votes

How can I configure a Azure DevOps release Pipeline to use Universal Packages from Azure Artifacts? I can only choose a NuGet or npm package, but Universal Packages do not appear in the list.

1

1 Answers

1
votes

How can I configure a Azure DevOps release Pipeline to use Universal Packages from Azure Artifacts?

As we know, the Universal Packages store one or more files together in a single unit that has a name and version. These packages are a lightweight, easy-to-use, and efficient way to transfer around a file or set of files, without the overhead of a traditional package manager with dependency management and other such features.

To use Universal Packages from Azure Artifacts in Azure DevOps release Pipeline, you could add the task Universal package to publish and download it:

enter image description here

After publishing the Universal Packages to the Azure Artifacts, you could use the Universal package task in the release Pipeline to download it from Azure Artifacts.

Check the document Publish and download Universal Packages in Azure Pipelines for some more details.

Hope this helps.