From d1f6006a178decfb627ad183afb4666d38c59c7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Mon, 26 Jan 2026 12:08:55 +0400 Subject: [PATCH] Rename e2e test results artifact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- .github/workflows/make.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make.yaml b/.github/workflows/make.yaml index 7560fe419..d0d22e0f0 100644 --- a/.github/workflows/make.yaml +++ b/.github/workflows/make.yaml @@ -204,11 +204,11 @@ jobs: EOF - run: "make test-e2e" env: - GOTESTSUM_JUNITFILE: "junit.xml" + GOTESTSUM_JUNITFILE: "junit-e2e.xml" - name: "Upload test results" uses: "actions/upload-artifact@v4" if: "always()" with: - name: "junit-results" - path: "junit.xml" + name: "junit-e2e-results" + path: "junit-e2e.xml" retention-days: 30