File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -161,10 +161,10 @@ jobs:
161
161
fi
162
162
163
163
- name : Archive Test Result
164
- uses : actions/upload-artifact@v3
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,14 @@ 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
+ runs-on : ubuntu-latest
180
+ steps :
181
+ - uses : actions/upload-artifact/merge@v4
182
+ with :
183
+ name : test-metrics
184
+ pattern : test-metrics-*
185
+ separate-directories : false
186
+ delete-merged : true
You can’t perform that action at this time.
0 commit comments