From ae733a2c676b56eda9d423e6ef1e835397291f8d Mon Sep 17 00:00:00 2001 From: skshetry <18718008+skshetry@users.noreply.github.com> Date: Tue, 17 Sep 2024 14:27:29 +0545 Subject: [PATCH] upload-artifacts: include hidden benchmarks results Fix actions/upload-artifact#602 --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1dc5702d..0a9a09ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -199,6 +199,7 @@ jobs: - name: upload raw results uses: actions/upload-artifact@v4 with: + include-hidden-files: true name: .benchmarks-${{ matrix.test.name }} path: dvc/.benchmarks - if: ${{ env.CPROFILE_ARGS }} @@ -279,6 +280,7 @@ jobs: - name: upload raw results uses: actions/upload-artifact@v4 with: + include-hidden-files: true name: .benchmarks-${{ matrix.test.name }} path: dvc-s3/.benchmarks - if: ${{ env.CPROFILE_ARGS }} @@ -367,6 +369,7 @@ jobs: - name: upload raw results uses: actions/upload-artifact@v4 with: + include-hidden-files: true name: .benchmarks-${{ matrix.test.name }} path: dvc-azure/.benchmarks - if: ${{ env.CPROFILE_ARGS }} @@ -449,6 +452,7 @@ jobs: - name: upload raw results uses: actions/upload-artifact@v4 with: + include-hidden-files: true name: .benchmarks-${{ matrix.test.name }} path: dvc-gs/.benchmarks - if: ${{ env.CPROFILE_ARGS }} @@ -491,6 +495,7 @@ jobs: delete-merged: true - uses: actions/upload-artifact/merge@v4 with: + include-hidden-files: true name: all-benchmarks pattern: .benchmarks-* delete-merged: true