DEV Community

mnymic
mnymic

Posted on

Answer: How to promote the package with UniversalPackages@0 task in AzureDevops

There is no option to promote universal package view in UniversalPackages @0 task. As a workaround, besides using extension, you can also promote universal package view through script in powershell task.

$token = "Enter your Pat here"

$url = "https://pkgs.dev.azure.com/OrgName/ProjectName/_apis/packaging/feeds/FeedID/upack/packagesbatch?api-version=5.1-preview.1"

$token = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($token)"))

$JSON = @'
{
  "data": {
    "viewId":

Top comments (0)