diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c70d4a693..8e1727cbe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -325,18 +325,9 @@ jobs: foreach ($variant in $env:VARIANTS.Split([char[]] $null, [System.StringSplitOptions]::RemoveEmptyEntries)) { Start-Job -Name "$variant" $PublishBlock -ArgumentList "$variant" - - # Limit active jobs in parallel to help with memory usage - $jobs = $(Get-Job -State Running) - - while ($jobs.Count -ge 5) { - Wait-Job -Job $jobs -Any | Out-Null - - $jobs = $(Get-Job -State Running) - } } - Get-Job | Receive-Job -Wait -AutoRemoveJob + Get-Job | Receive-Job -Wait - name: Upload ASF-generic continue-on-error: true