From ba9bc9ea936eb184ad32600e0653d44ef71a6c57 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 28 Jun 2026 12:48:34 +0200 Subject: [PATCH] Update `publish-report` action to write output to `test.md` instead of `index.md` --- .github/actions/publish-report/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/publish-report/action.yml b/.github/actions/publish-report/action.yml index 9e9d00b..5bf2fa0 100644 --- a/.github/actions/publish-report/action.yml +++ b/.github/actions/publish-report/action.yml @@ -97,7 +97,7 @@ runs: else: md += "_No JaCoCo report found._\n" - with open("reports/index.md", "w") as out: + with open("reports/test.md", "w") as out: out.write(md) print(md) EOF