diff --git a/.github/actions/upload-coverage/action.yml b/.github/actions/upload-coverage/action.yml index 07c08984111..3d918f12c1c 100644 --- a/.github/actions/upload-coverage/action.yml +++ b/.github/actions/upload-coverage/action.yml @@ -15,3 +15,4 @@ runs: with: name: coverage-data-${{ env.COVERAGE_UUID }} path: .coverage* + include-hidden-files: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fb26225613..45396604876 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -235,6 +235,7 @@ jobs: with: name: Benchmarks log path: asv_bench/benchmarks.log + include-hidden-files: true if: failure() execution-filter: diff --git a/.github/workflows/fuzzydata-test.yml b/.github/workflows/fuzzydata-test.yml index c9b2b2a4a29..2dd86ad9dd6 100644 --- a/.github/workflows/fuzzydata-test.yml +++ b/.github/workflows/fuzzydata-test.yml @@ -48,3 +48,4 @@ jobs: name: fuzzydata-test-workflow-${{matrix.engine}} path: /tmp/fuzzydata-test-wf-${{matrix.engine}}/* # Must match output dir in test_fuzzydata.py if-no-files-found: error + include-hidden-files: true diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 514a72481cb..e2beac1eac9 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -38,6 +38,7 @@ jobs: with: name: modin-wheel-and-source-tarball path: ./dist/ + include-hidden-files: true - name: Publish Modin wheel to PyPI if: github.event_name == 'push'