From e9256dfa944985122c9316fc2dcd8a51d7816bc8 Mon Sep 17 00:00:00 2001 From: Alison Hart Date: Fri, 6 Sep 2024 16:04:03 -0400 Subject: [PATCH] Fix upload-artifact action to work with v4.4 and newer (#4314) --- .github/workflows/tox.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 8366aa2c40..b9aaee28fe 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -134,6 +134,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: logs-${{ matrix.name }}.zip + include-hidden-files: true path: | .tox/**/log/ .tox/**/.coverage* @@ -213,6 +214,7 @@ jobs: uses: actions/upload-artifact/merge@v4 with: name: logs.zip + include-hidden-files: true pattern: logs-*.zip # artifacts like py312.zip and py312-macos do have overlapping files separate-directories: true @@ -251,4 +253,5 @@ jobs: - name: Delete Merged Artifacts uses: actions/upload-artifact/merge@v4 with: + include-hidden-files: true delete-merged: true