mirror of https://github.com/tiangolo/fastapi.git
💚 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
This commit is contained in:
parent
17f1f7b5bd
commit
b63b4189ee
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue