Browse Source

💚 Set `include-hidden-files` to `True` when using the `upload-artifact` GH action (#12118)

* include-hidden-files when uploading coverage files

* include-hidden-files when building docs
pull/9410/merge
Sofie Van Landeghem 7 months ago
committed by GitHub
parent
commit
b63b4189ee
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      .github/workflows/build-docs.yml
  2. 2
      .github/workflows/test.yml

1
.github/workflows/build-docs.yml

@ -113,6 +113,7 @@ jobs:
with:
name: docs-site-${{ matrix.lang }}
path: ./site/**
include-hidden-files: true
# https://github.com/marketplace/actions/alls-green#why
docs-all-green: # This job does nothing and is only used for the branch protection

2
.github/workflows/test.yml

@ -91,6 +91,7 @@ jobs:
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
path: coverage
include-hidden-files: true
coverage-combine:
needs: [test]
@ -123,6 +124,7 @@ jobs:
with:
name: coverage-html
path: htmlcov
include-hidden-files: true
# https://github.com/marketplace/actions/alls-green#why
check: # This job does nothing and is only used for the branch protection

Loading…
Cancel
Save