The auto-update system used a per-version publish URL
(releases/download/v${version}), so each installed build only ever
checked its own release page for new versions. To deliver an update we
had to manually copy the new manifest into every old release — easy to
forget, and any half-uploaded state showed users red "check failed"
banners.
Architectural fix:
- New rolling 'update-channel' Gitea release. publish.url is now a
fixed path (.../releases/download/update-channel) that never moves.
- release.ps1 uploads each new build to three places:
1. vX.Y.Z (historical archive + changelog)
2. update-channel (what every client polls)
3. -BridgeTags (transition: also fill in old releases so users
still on those versions can find the new build)
- upload-release-assets.ps1 gains -AssetVersion to upload version-X.Y.Z
artifacts into a non-version tag (channel/bridge).
Resilience fixes for the updater itself:
- Hourly checks and the boot check now run in SILENT mode: network
errors don't promote to a red error state, they're logged and
retried on the next tick. Only user-initiated "Check now" surfaces
errors. This prevents the cascade of "Ошибка проверки" cards on
flaky networks or partial uploads.
- Boot check retries up to 3 times (30s/2m/5m backoff) before giving
up until the hourly tick.
- Track lastCheckedAt; "Up to date" subtitle now shows "checked Nm ago".
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
183 lines
6.1 KiB
PowerShell
183 lines
6.1 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Upload pre-built NSIS artifacts to a Gitea release.
|
|
|
|
.DESCRIPTION
|
|
Uploads installer + blockmap + latest.yml to the release identified by -Tag.
|
|
If the release does not exist it is created (only for semver-looking tags;
|
|
for non-semver tags like 'update-channel' the release must exist already).
|
|
Same-named existing assets are replaced.
|
|
|
|
.PARAMETER Tag
|
|
Release tag to upload INTO. May be a version tag (v0.5.1) or a channel
|
|
tag (update-channel). Defaults to v<package.json version>.
|
|
|
|
.PARAMETER AssetVersion
|
|
Version of the artifacts being uploaded (e.g. 0.5.1). Defaults to the
|
|
numeric part of -Tag. Specify explicitly when uploading version-X.Y.Z
|
|
artifacts into a non-version tag (channel or bridge).
|
|
|
|
.EXAMPLE
|
|
pwsh scripts/upload-release-assets.ps1
|
|
pwsh scripts/upload-release-assets.ps1 -Tag v0.5.0
|
|
pwsh scripts/upload-release-assets.ps1 -Tag update-channel -AssetVersion 0.5.1
|
|
pwsh scripts/upload-release-assets.ps1 -Tag v0.4.0 -AssetVersion 0.5.1
|
|
#>
|
|
param(
|
|
[string]$Tag,
|
|
[string]$AssetVersion
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
$repoOwner = 'AnRil'
|
|
$repoName = 'laude'
|
|
$giteaHost = 'xn--90adajar8af4h.xn--p1ai/git'
|
|
$apiBase = "https://$giteaHost/api/v1"
|
|
|
|
if (-not $env:GITEA_TOKEN) {
|
|
Write-Error "GITEA_TOKEN not set. Set it via [Environment]::SetEnvironmentVariable('GITEA_TOKEN', '<value>', 'User') and open a new PowerShell session."
|
|
exit 1
|
|
}
|
|
|
|
$root = Resolve-Path (Join-Path $PSScriptRoot '..')
|
|
Set-Location $root
|
|
|
|
if (-not $Tag) {
|
|
$pkgVersion = (Get-Content package.json | ConvertFrom-Json).version
|
|
$Tag = "v$pkgVersion"
|
|
}
|
|
if (-not $AssetVersion) {
|
|
# Derive from tag when possible (vX.Y.Z → X.Y.Z); otherwise read package.json.
|
|
if ($Tag -match '^v\d+\.\d+\.\d+') {
|
|
$AssetVersion = $Tag.TrimStart('v')
|
|
} else {
|
|
$AssetVersion = (Get-Content package.json | ConvertFrom-Json).version
|
|
}
|
|
}
|
|
$version = $AssetVersion
|
|
|
|
$installer = Join-Path 'release' "Exercise-Reminder-Setup-$version.exe"
|
|
$blockmap = "$installer.blockmap"
|
|
$manifest = Join-Path 'release' 'latest.yml'
|
|
foreach ($f in @($installer, $blockmap, $manifest)) {
|
|
if (-not (Test-Path $f)) {
|
|
Write-Error "Artifact not found: $f. Build first with: npm run dist"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
$headers = @{
|
|
Authorization = "token $env:GITEA_TOKEN"
|
|
Accept = 'application/json'
|
|
}
|
|
|
|
# --- Find or create release ----------------------------------------------
|
|
Write-Host "Looking for existing release $Tag..." -ForegroundColor Cyan
|
|
$release = $null
|
|
try {
|
|
$release = Invoke-RestMethod `
|
|
-Uri "$apiBase/repos/$repoOwner/$repoName/releases/tags/$Tag" `
|
|
-Method Get `
|
|
-Headers $headers
|
|
Write-Host " Found release id=$($release.id)" -ForegroundColor DarkGray
|
|
} catch {
|
|
if ($_.Exception.Response.StatusCode.value__ -eq 404) {
|
|
if ($Tag -notmatch '^v\d+\.\d+\.\d+') {
|
|
Write-Error "Release '$Tag' not found and tag is not semver. Create it manually on Gitea (e.g. 'update-channel' is a one-time setup)."
|
|
exit 1
|
|
}
|
|
Write-Host " Not found, creating new release..." -ForegroundColor DarkGray
|
|
|
|
$prev = $null
|
|
try {
|
|
$prevTagOutput = & git describe --tags --abbrev=0 "$Tag^" 2>$null
|
|
if ($LASTEXITCODE -eq 0 -and $prevTagOutput) {
|
|
$prev = $prevTagOutput.Trim()
|
|
}
|
|
} catch {
|
|
$prev = $null
|
|
}
|
|
if ($prev) {
|
|
$log = (& git log --pretty=format:"- %s" "$prev..$Tag") -join "`n"
|
|
} else {
|
|
# No prior tag — list last 10 commits up to this tag.
|
|
$log = (& git log --pretty=format:"- %s" -n 10 "$Tag") -join "`n"
|
|
}
|
|
$body = "### Changes`n`n$log`n`n---`n`nInstaller below: run it; if app is already installed, it updates in place and keeps your settings."
|
|
|
|
$payload = @{
|
|
tag_name = $Tag
|
|
name = "Exercise Reminder $Tag"
|
|
body = $body
|
|
draft = $false
|
|
prerelease = $false
|
|
} | ConvertTo-Json -Depth 5
|
|
|
|
$release = Invoke-RestMethod `
|
|
-Uri "$apiBase/repos/$repoOwner/$repoName/releases" `
|
|
-Method Post `
|
|
-Headers $headers `
|
|
-Body $payload `
|
|
-ContentType 'application/json'
|
|
Write-Host " Created release id=$($release.id)" -ForegroundColor Green
|
|
} else {
|
|
throw
|
|
}
|
|
}
|
|
|
|
# --- Delete existing assets with same names (to allow re-upload) ---------
|
|
$existing = Invoke-RestMethod `
|
|
-Uri "$apiBase/repos/$repoOwner/$repoName/releases/$($release.id)/assets" `
|
|
-Method Get `
|
|
-Headers $headers
|
|
foreach ($asset in @($installer, $blockmap, $manifest)) {
|
|
$name = Split-Path $asset -Leaf
|
|
$found = $existing | Where-Object { $_.name -eq $name }
|
|
if ($found) {
|
|
Write-Host "Removing existing asset $name (id=$($found.id))..." -ForegroundColor Yellow
|
|
Invoke-RestMethod `
|
|
-Uri "$apiBase/repos/$repoOwner/$repoName/releases/$($release.id)/assets/$($found.id)" `
|
|
-Method Delete `
|
|
-Headers $headers | Out-Null
|
|
}
|
|
}
|
|
|
|
# --- Upload assets -------------------------------------------------------
|
|
# Use curl.exe (bundled with Win10+) because Invoke-RestMethod in PS 5.1
|
|
# chokes on large multipart uploads (>50MB) over slower connections.
|
|
$curlCmd = Get-Command curl.exe -ErrorAction SilentlyContinue
|
|
if ($curlCmd) {
|
|
$curl = $curlCmd.Source
|
|
} else {
|
|
$curl = "$env:SystemRoot\System32\curl.exe"
|
|
if (-not (Test-Path $curl)) {
|
|
Write-Error "curl.exe not found. Install via 'winget install curl' or add to PATH."
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
foreach ($asset in @($installer, $blockmap, $manifest)) {
|
|
$name = Split-Path $asset -Leaf
|
|
$size = (Get-Item $asset).Length
|
|
Write-Host ("Uploading {0} ({1:N1} MB)..." -f $name, ($size / 1MB)) -ForegroundColor Cyan
|
|
$uri = "$apiBase/repos/$repoOwner/$repoName/releases/$($release.id)/assets?name=$([uri]::EscapeDataString($name))"
|
|
# -f: fail on HTTP errors; -s -S: silent but show errors; --data-binary @file
|
|
& $curl `
|
|
--fail-with-body `
|
|
--silent --show-error `
|
|
-H "Authorization: token $env:GITEA_TOKEN" `
|
|
-H "Content-Type: application/octet-stream" `
|
|
--data-binary "@$asset" `
|
|
$uri
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Error "Upload failed for $name (curl exit $LASTEXITCODE)"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
$releaseUrl = "https://$giteaHost/$repoOwner/$repoName/releases/tag/$Tag"
|
|
Write-Host ""
|
|
Write-Host "Release assets uploaded" -ForegroundColor Green
|
|
Write-Host " $releaseUrl"
|