]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
💚 Set `include-hidden-files` to `True` when using the `upload-artifact` GH action...
authorSofie Van Landeghem <svlandeg@users.noreply.github.com>
Mon, 2 Sep 2024 19:53:53 +0000 (21:53 +0200)
committerGitHub <noreply@github.com>
Mon, 2 Sep 2024 19:53:53 +0000 (21:53 +0200)
* include-hidden-files when uploading coverage files

* include-hidden-files when building docs

.github/workflows/build-docs.yml
.github/workflows/test.yml

index e46629e9b40d26c278ef987a0300ee0bc88232bd..52c34a49ea6bad69b1218297d14e57dbb0ae9dd3 100644 (file)
@@ -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
index 0458f83ffe2081928ed5ec299d77d1454f09a3e9..e9db49b51fd306c75ebd64e36f35751c05318483 100644 (file)
@@ -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