From bc85f5ab06bba114896150e6ae296fd9e1fcb293 Mon Sep 17 00:00:00 2001 From: Aleksey Sabilin Date: Tue, 28 Jul 2026 19:42:14 +0300 Subject: [PATCH] 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] --- scripts/publish-ci-report.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/publish-ci-report.sh b/scripts/publish-ci-report.sh index c718f4f..c28bbc2 100644 --- a/scripts/publish-ci-report.sh +++ b/scripts/publish-ci-report.sh @@ -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}"