Skip to content

Commit 921b655

Browse files
committed
[Bug Fix + Test] (config) Rename the uploading option 'name' and file path.
1 parent 30e6e2b commit 921b655

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/organize_all_testing_coverage_reports_with_different_os_and_py_version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ jobs:
106106
- name: Upload testing coverage report
107107
uses: actions/upload-artifact@v3
108108
with:
109-
name: project_testing_coverage_report
109+
name: new_project_testing_coverage_report_${{ inputs.test_type }}
110110
path: .coverage-${{ inputs.test_type }}
111111
if-no-files-found: error

.github/workflows/organize_all_testing_reports_with_different_test_type.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@ jobs:
2727
- name: Download code coverage result file
2828
uses: actions/download-artifact@v3
2929
with:
30-
name: project_testing_coverage_report
31-
path: .coverage-*
30+
name: new_project_testing_coverage_report_unit-test
31+
path: .coverage-unit-test
32+
33+
- name: Download code coverage result file
34+
uses: actions/download-artifact@v3
35+
with:
36+
name: new_project_testing_coverage_report_integration-test
37+
path: .coverage-integration-test
3238

3339
- name: Setup Python 3.10 in Ubuntu OS
3440
uses: actions/setup-python@v2

0 commit comments

Comments
 (0)