Release v0.1.5.4 prepare for release

This commit is contained in:
2025-08-29 12:26:30 +02:00
parent c335b848bd
commit 5d531334fc
6 changed files with 10 additions and 8 deletions

View File

@ -102,6 +102,8 @@ try {
& cmake @cmakeArgs | Out-Null
if ($LASTEXITCODE -ne 0) { throw "CMake-Konfiguration für Coverage fehlgeschlagen" }
# Run coverage target with integration tests disabled to avoid rate limits
$env:PRIVATEBIN_IT = '0'
& cmake --build build-clang --config Release --target coverage_llvm
if ($LASTEXITCODE -ne 0) { throw "Coverage-Build fehlgeschlagen" }
@ -223,7 +225,7 @@ if (Test-Path $distPath) {
foreach ($artifact in $artifacts) {
Write-Host "Lade hoch: $($artifact.Name)..." -ForegroundColor Yellow
$uploadUri = "https://gitea.medisoftware.org/api/v1/repos/Markus/lib-privatebin/releases/$($release.id)/assets"
$uploadUri = "https://$gitHost/api/v1/repos/$owner/$repoName/releases/$($release.id)/assets"
$boundary = [System.Guid]::NewGuid().ToString()
$LF = "`r`n"