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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
0 deletions
-
.github/workflows/build-docs.yml
-
.github/workflows/test.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 |
|
|
|
|
|
@ -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 |
|
|
|