feat(ci-reports): publish report.tar.gz archive for offline download

Pack HTML report after publish; link archive in run index and CI log.
Add fetch-ci-report.sh helper for agent curl/extract.

[skip ci]
This commit is contained in:
2026-07-28 13:52:01 +03:00
parent 85a34dd7b0
commit 3c2c33f83b
3 changed files with 52 additions and 1 deletions
+7
View File
@@ -5,6 +5,13 @@ server {
autoindex on;
charset utf-8;
# Archives for curl/agent offline analysis (before Allure SPA fallback)
location ~* \.(tar\.gz|tgz|zip)$ {
default_type application/gzip;
add_header Content-Disposition 'attachment';
try_files $uri =404;
}
location / {
try_files $uri $uri/ =404;
}