Browse Source

Merge pull request #25262 from abpframework/auto-merge/rel-10-2/4495

Merge branch rel-10.3 with rel-10.2
pull/25268/head
selman koc 3 weeks ago
committed by GitHub
parent
commit
f855a54d2e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      nupkg/push-nightly-packages-myget.ps1
  2. 3
      nupkg/push_packages.ps1

3
nupkg/push-nightly-packages-myget.ps1

@ -16,6 +16,8 @@ if (!$apikey)
$maxRetryCount = 3
$retryDelaysInSeconds = @(30, 60, 120)
$failedPackages = @()
$failedPackagesFilePath = Join-Path (Get-Location) "failed-packages.txt"
if (Test-Path $failedPackagesFilePath) { Remove-Item $failedPackagesFilePath -Force }
$packages = Get-ChildItem -Filter *.nupkg | Sort-Object Name
@ -61,5 +63,6 @@ if ($failedPackages.Count -gt 0)
{
$errorCount = $failedPackages.Count
Write-Host ("******* $errorCount error(s) occured *******") -ForegroundColor red
$failedPackages | Set-Content -Path $failedPackagesFilePath
exit 1
}

3
nupkg/push_packages.ps1

@ -14,7 +14,9 @@ $totalProjectsCount = $projects.length
$nugetUrl = "https://api.nuget.org/v3/index.json"
$maxQuotaRetryCount = 3
$quotaRetryDelaysInSeconds = @(30, 60, 120)
$failedPackagesFilePath = Join-Path $packFolder "failed-packages.txt"
Set-Location $packFolder
if (Test-Path $failedPackagesFilePath) { Remove-Item $failedPackagesFilePath -Force }
foreach($project in $projects) {
$i += 1
@ -76,5 +78,6 @@ foreach($project in $projects) {
if ($errorCount > 0)
{
Write-Host ("******* $errorCount error(s) occured *******") -ForegroundColor red
$failedPackages | Set-Content -Path $failedPackagesFilePath
exit 1
}

Loading…
Cancel
Save