Skip to content

Commit

Permalink
Merge pull request dotnet#29784 from jmarolf/fix-publish-assets2
Browse files Browse the repository at this point in the history
fix publish assets to publish channels
  • Loading branch information
jmarolf authored Sep 12, 2018
2 parents 5e3cc07 + 77ba6a3 commit 761b82e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Tools/MicroBuild/publish-assets.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ function Publish-Entry($publishData, [switch]$isBranch) {

# Finally get our channels uploaded to versions
foreach ($channel in $publishData.channels) {
Publish-Channel $packageDir $channel
foreach ($nugetKind in $publishData.nugetKind) {
Publish-Channel (Join-Path $nugetDir $nugetKind) $channel
}
}

exit 0
Expand Down

0 comments on commit 761b82e

Please sign in to comment.