From 6d3f02e79180f0910935fb3d03ed1464ff97ef04 Mon Sep 17 00:00:00 2001 From: Matej Novotny Date: Tue, 12 May 2026 18:25:21 +0200 Subject: [PATCH] Fix duplicate server-log artifact name in relaxed mode CI job --- .github/workflows/ci-actions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index 4b1a15d985..bab1f96bf3 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -260,13 +260,13 @@ jobs: uses: actions/upload-artifact@v7 if: failure() with: - name: test-reports-cdi-tck-jdk${{matrix.java.name}}-incontainer-relaxed + name: test-reports-incontainer-relaxed-jdk${{matrix.java.name}} path: 'test-reports.tgz' - name: Upload server log artifact (if maven failed) uses: actions/upload-artifact@v7 if: failure() with: - name: server-log-cdi-tck-jdk${{matrix.java.name}} + name: server-log-incontainer-relaxed-jdk${{matrix.java.name}} path: 'server-log.tgz' - name: Build with Maven, no WildFly run: | @@ -279,7 +279,7 @@ jobs: uses: actions/upload-artifact@v7 if: failure() with: - name: test-reports-cdi-tck-jdk${{matrix.java.name}}-relaxed + name: test-reports-no-container-relaxed-jdk${{matrix.java.name}} path: 'test-reports.tgz' # Weld no-container tests, includes junit, Weld SE tests plus CDI TCKs and integration tests that don't require EE container