Skip to content

Commit 3853767

Browse files
Expose desktop release failure tail in CI
1 parent 5dd5719 commit 3853767

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/desktop-release.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,18 @@ jobs:
7474
Write-Output "::error title=Prepare runtime failed::$message"
7575
if (Test-Path $logPath) {
7676
Write-Host '---- prepare-runtime log tail ----'
77-
Get-Content $logPath -Tail 200
77+
$tailLines = @(
78+
Get-Content $logPath -Tail 40 |
79+
ForEach-Object { "$_".Trim() } |
80+
Where-Object { $_ }
81+
)
82+
$tailLines | Write-Host
83+
$tailLines |
84+
Select-Object -Last 8 |
85+
ForEach-Object {
86+
$line = $_ -replace '\r|\n', ' '
87+
Write-Output "::error title=Prepare runtime tail::$line"
88+
}
7889
}
7990
throw
8091
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- 最新 Release 页面:
88
`https://github.com/Horace-Maxwell/Horosa-Web-App-comprehensively-improved-Windows/releases/latest`
99
- 当前可直接下载的一键安装包:
10-
`https://github.com/Horace-Maxwell/Horosa-Web-App-comprehensively-improved-Windows/releases/download/2026.03.10.7/HorosaPortableWindows-2026.03.10.7.zip`
10+
`https://github.com/Horace-Maxwell/Horosa-Web-App-comprehensively-improved-Windows/releases/download/2026.03.10.8/HorosaPortableWindows-2026.03.10.8.zip`
1111

1212
请注意:
1313

desktop_installer_bundle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- 最新 Release 页面:
88
`https://github.com/Horace-Maxwell/Horosa-Web-App-comprehensively-improved-Windows/releases/latest`
99
- 当前一键安装包直链:
10-
`https://github.com/Horace-Maxwell/Horosa-Web-App-comprehensively-improved-Windows/releases/download/2026.03.10.7/HorosaPortableWindows-2026.03.10.7.zip`
10+
`https://github.com/Horace-Maxwell/Horosa-Web-App-comprehensively-improved-Windows/releases/download/2026.03.10.8/HorosaPortableWindows-2026.03.10.8.zip`
1111

1212
请下载:
1313

desktop_installer_bundle/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2026.03.10.7",
2+
"version": "2026.03.10.8",
33
"channel": "stable",
44
"release_asset_prefix": "HorosaPortableWindows",
55
"release_name": "v1.0.1"

0 commit comments

Comments
 (0)