This is an automated email from the ASF dual-hosted git repository.

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris-tools.git


The following commit(s) were added to refs/heads/main by this push:
     new 22c82fc  CI: Fix artifact-name in case of failure (#19)
22c82fc is described below

commit 22c82fc8706a1646bc473d053d26372a2deef1b3
Author: Robert Stupp <[email protected]>
AuthorDate: Fri Apr 25 08:47:01 2025 +0200

    CI: Fix artifact-name in case of failure (#19)
    
    Matrix jobs cannot share the same artifact-name
---
 .github/workflows/benchmarks-main.yml               | 2 +-
 .github/workflows/iceberg-catalog-migrator-main.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/benchmarks-main.yml 
b/.github/workflows/benchmarks-main.yml
index 38aac6f..e744d4f 100644
--- a/.github/workflows/benchmarks-main.yml
+++ b/.github/workflows/benchmarks-main.yml
@@ -63,7 +63,7 @@ jobs:
         uses: actions/upload-artifact@v4
         if: failure()
         with:
-          name: test-results
+          name: test-results-${{ matrix.java-version }}
           path: |
             **/build/reports/*
             **/build/test-results/*
diff --git a/.github/workflows/iceberg-catalog-migrator-main.yml 
b/.github/workflows/iceberg-catalog-migrator-main.yml
index 6c8accc..73c24f3 100644
--- a/.github/workflows/iceberg-catalog-migrator-main.yml
+++ b/.github/workflows/iceberg-catalog-migrator-main.yml
@@ -63,7 +63,7 @@ jobs:
         uses: actions/upload-artifact@v4
         if: failure()
         with:
-          name: test-results
+          name: test-results-${{ matrix.java-version }}
           path: |
             **/build/reports/*
             **/build/test-results/*

Reply via email to