diff --git a/.github/actions/pkg-create/action.yml b/.github/actions/pkg-create/action.yml index aeb80512..88b9abd9 100644 --- a/.github/actions/pkg-create/action.yml +++ b/.github/actions/pkg-create/action.yml @@ -40,3 +40,4 @@ runs: with: name: ${{ inputs.artifact-name }} path: pypi + include-hidden-files: true diff --git a/.github/actions/unittesting/action.yml b/.github/actions/unittesting/action.yml index 75be5911..39b3d6c3 100644 --- a/.github/actions/unittesting/action.yml +++ b/.github/actions/unittesting/action.yml @@ -53,6 +53,7 @@ runs: with: name: ${{ steps.location.outputs.artifact }} path: "test/${{ steps.location.outputs.artifact }}.xml" + include-hidden-files: true if: failure() - name: Statistics diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index 54db77e3..4a52aced 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -109,3 +109,4 @@ jobs: name: docs-${{ matrix.target }}-${{ github.sha }} path: ${{ inputs.docs-dir }}/build/ retention-days: ${{ env.KEEP_DAYS }} + include-hidden-files: true diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 3838ec6c..d209366d 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -36,6 +36,7 @@ jobs: with: name: pypi-packages-${{ github.sha }} path: dist + include-hidden-files: true upload-package: needs: build-package