fix(ci-reports): chmod a+r on report.tar.gz for nginx read

mktemp leaves 600; nginx worker got 403 Forbidden on download.

[skip ci]
This commit is contained in:
2026-07-28 19:42:14 +03:00
parent 3c2c33f83b
commit bc85f5ab06
+1
View File
@@ -99,6 +99,7 @@ create_report_archive() {
tmp="$(mktemp)"
tar -czf "${tmp}" -C "${dest}" .
mv -f "${tmp}" "${archive}"
chmod a+r "${archive}"
}
create_report_archive "${DEST}"