File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ jobs:
164
164
uses : actions/upload-artifact@v4
165
165
if : always()
166
166
with :
167
- name : test-metrics
167
+ name : test-metrics-${{ matrix.service_partition.service }}-${{ matrix.service_partition.partition }}
168
168
path : target/reports
169
169
170
170
- name : Publish ${{ matrix.service }} Test Results
@@ -173,3 +173,15 @@ jobs:
173
173
with :
174
174
junit_files : target/reports/*.xml
175
175
check_name : ${{ matrix.service }} Terraform Test Results
176
+
177
+ merge_artifacts :
178
+ needs : test_service
179
+ if : always()
180
+ runs-on : ubuntu-latest
181
+ steps :
182
+ - uses : actions/upload-artifact/merge@v4
183
+ with :
184
+ name : test-metrics
185
+ pattern : test-metrics-*
186
+ separate-directories : false
187
+ delete-merged : true
You can’t perform that action at this time.
0 commit comments