Skip to content

Commit 38a7e6d

Browse files
committed
✏️ Fix the incorrect calling way of workflow parameters.
1 parent e3fda91 commit 38a7e6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rw_poetry_run_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- name: Upload code coverage result file
135135
uses: actions/upload-artifact@v4
136136
with:
137-
name: coverage_${{ inputs.test_type }}_${{ matrix.os }}_${{ matrix.python-version }}
137+
name: coverage_${{ inputs.test_type }}_${{ inputs.runtime_os }}_${{ inputs.python-version }}
138138
path: .coverage.${{ inputs.test_type }}.${{ inputs.runtime_os }}-${{ inputs.python_version }}
139139
if-no-files-found: error
140140
include-hidden-files: true

.github/workflows/rw_run_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Upload code coverage result file
125125
uses: actions/upload-artifact@v4
126126
with:
127-
name: coverage_${{ inputs.test_type }}_${{ matrix.os }}_${{ matrix.python-version }}
127+
name: coverage_${{ inputs.test_type }}_${{ inputs.runtime_os }}_${{ inputs.python-version }}
128128
path: .coverage.${{ inputs.test_type }}.${{ inputs.runtime_os }}-${{ inputs.python_version }}
129129
if-no-files-found: error
130130
include-hidden-files: true

0 commit comments

Comments
 (0)