From: Sofie Van Landeghem Date: Mon, 2 Sep 2024 19:53:53 +0000 (+0200) Subject: 💚 Set `include-hidden-files` to `True` when using the `upload-artifact` GH action... X-Git-Tag: 0.112.3~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b63b4189eedc9e586fb51705a0a29ace8fa6a6d1;p=thirdparty%2Ffastapi%2Ffastapi.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 --- diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index e46629e9b4..52c34a49ea 100644 --- a/.github/workflows/build-docs.yml +++ b/.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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0458f83ffe..e9db49b51f 100644 --- a/.github/workflows/test.yml +++ b/.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