Skip to content

Commit 9aeb56f

Browse files
committed
prevent artifact clashes
1 parent 5cf7ec6 commit 9aeb56f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/unit-tests-internal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
if: ${{ !cancelled() }}
9292
uses: actions/upload-artifact@v4
9393
with:
94-
name: blob-report-${{ matrix.shardIndex }}
94+
name: internal-blob-report-${{ matrix.shardIndex }}
9595
path: .vitest-reports/*
9696
include-hidden-files: true
9797
retention-days: 1
@@ -125,7 +125,7 @@ jobs:
125125
uses: actions/download-artifact@v4
126126
with:
127127
path: .vitest-reports
128-
pattern: blob-report-*
128+
pattern: internal-blob-report-*
129129
merge-multiple: true
130130

131131
- name: Merge reports

.github/workflows/unit-tests-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
if: ${{ !cancelled() }}
9494
uses: actions/upload-artifact@v4
9595
with:
96-
name: blob-report-${{ matrix.shardIndex }}
96+
name: packages-blob-report-${{ matrix.shardIndex }}
9797
path: .vitest-reports/*
9898
include-hidden-files: true
9999
retention-days: 1
@@ -127,7 +127,7 @@ jobs:
127127
uses: actions/download-artifact@v4
128128
with:
129129
path: .vitest-reports
130-
pattern: blob-report-*
130+
pattern: packages-blob-report-*
131131
merge-multiple: true
132132

133133
- name: Merge reports

.github/workflows/unit-tests-webapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
if: ${{ !cancelled() }}
9898
uses: actions/upload-artifact@v4
9999
with:
100-
name: blob-report-${{ matrix.shardIndex }}
100+
name: webapp-blob-report-${{ matrix.shardIndex }}
101101
path: .vitest-reports/*
102102
include-hidden-files: true
103103
retention-days: 1
@@ -131,7 +131,7 @@ jobs:
131131
uses: actions/download-artifact@v4
132132
with:
133133
path: .vitest-reports
134-
pattern: blob-report-*
134+
pattern: webapp-blob-report-*
135135
merge-multiple: true
136136

137137
- name: Merge reports

0 commit comments

Comments
 (0)