Skip to content

Commit 5f92bc2

Browse files
committed
Refactor coverage artifact naming in main.yml to remove leading dot
1 parent 574dea3 commit 5f92bc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ jobs:
130130
if: contains(matrix.name, 'coverage')
131131
run: |
132132
ls -lash
133-
mv .coverage .coverage.${{ matrix.name }}
133+
mv .coverage coverage.${{ matrix.name }}
134134
ls -lash
135135
136136
- name: Upload temporary coverage artifact
137137
if: contains(matrix.name, 'coverage')
138138
uses: actions/upload-artifact@v4
139139
with:
140140
name: coverage-artifact-${{ matrix.name }}
141-
path: .coverage.${{ matrix.name }}
141+
path: coverage.${{ matrix.name }}
142142
retention-days: 1
143143

144144
report-coverage:

0 commit comments

Comments
 (0)