You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host"Multiple release plans found for package name: $PackageName with work item IDs: $concatenatedIds. Using the first release plan to update release status."
55
+
$activeReleasePlan=$workItems[0]
56
+
}
57
+
# Update release status
58
+
Write-Host"Release plan work item ID: $($activeReleasePlan["id"])"
59
+
Write-Host"Marking release completion for package, name: $PackageName version: $PackageVersion"
Write-Host"Multiple release plans found for package name: $PackageName with work item IDs: $concatenatedIds. Using the first release plan to update release status."
52
-
$activeReleasePlan=$workItems[0]
64
+
$InfoFileName=Split-Path$PackageInfoFilePath-Leaf
65
+
# Process the package if given path is package info file
66
+
if ($InfoFileName-like"*.json")
67
+
{
68
+
Write-Host"Processing package info file: $PackageInfoFilePath"
69
+
Process-Package $PackageInfoFilePath
53
70
}
54
-
# Update release status
55
-
Write-Host"Release plan work item ID: $($activeReleasePlan["id"])"
56
-
Write-Host"Marking release completion for package, name: $PackageName version: $PackageVersion"
0 commit comments