Skip to content

Commit 22c82fc

Browse files
authored
CI: Fix artifact-name in case of failure (#19)
Matrix jobs cannot share the same artifact-name
1 parent 67a4b21 commit 22c82fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/benchmarks-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
uses: actions/upload-artifact@v4
6464
if: failure()
6565
with:
66-
name: test-results
66+
name: test-results-${{ matrix.java-version }}
6767
path: |
6868
**/build/reports/*
6969
**/build/test-results/*

.github/workflows/iceberg-catalog-migrator-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
uses: actions/upload-artifact@v4
6464
if: failure()
6565
with:
66-
name: test-results
66+
name: test-results-${{ matrix.java-version }}
6767
path: |
6868
**/build/reports/*
6969
**/build/test-results/*

0 commit comments

Comments
 (0)