task/Publish/PublishToPSGallery.ps1
BuildTask PublishToPSGallery -Stage Publish -Properties @{ Order = 2 ValidWhen = { $null -ne $env:NuGetApiKey } Implementation = { Publish-Module -Path $buildInfo.Package -NuGetApiKey $env:NuGetApiKey -Repository PSGallery -ErrorAction Stop } } |