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:21 +03:00
parent 069b65450f
commit 0219ebace1
+1
View File
@@ -99,6 +99,7 @@ create_report_archive() {
tmp="$(mktemp)" tmp="$(mktemp)"
tar -czf "${tmp}" -C "${dest}" . tar -czf "${tmp}" -C "${dest}" .
mv -f "${tmp}" "${archive}" mv -f "${tmp}" "${archive}"
chmod a+r "${archive}"
} }
create_report_archive "${DEST}" create_report_archive "${DEST}"