Skip to content

Commit ea8699b

Browse files
Allow uploading of hidden files
1 parent 51d9d7c commit ea8699b

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/full_coverage.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,21 @@ jobs:
191191
run: |
192192
if [ -d __repo_pyspedas ]; then mv __repo_pyspedas pyspedas; fi
193193
194+
- name: Debug coverage files
195+
if: ${{ always() }}
196+
run: |
197+
pwd
198+
ls -la
199+
find . -maxdepth 2 -name '.coverage*' -ls
200+
194201
- name: Upload raw coverage data
195202
if: ${{ always() }}
196-
uses: actions/upload-artifact@v4
203+
uses: actions/upload-artifact@v5
197204
with:
198205
name: coverage-${{ matrix.shard }}
199206
path: .coverage.${{ matrix.shard }}
200207
if-no-files-found: error
208+
include-hidden-files: true
201209

202210
- name: Final cleanup
203211
if: ${{ always() }}

0 commit comments

Comments
 (0)