From eed4a5123c7ff845e1aad373a4f5bc194517db24 Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Fri, 16 Feb 2024 20:36:56 -0800 Subject: [PATCH] actions/download-artifact now supports a pattern This should reduce the time it takes to download the coverage data from a multitude of test runs. By using the action's new `pattern` as the artifact name, we avoid downloading artifacts of docs builds. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17a305a49..3b9e3cd27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -210,6 +210,7 @@ jobs: uses: actions/download-artifact@v4 with: path: ci-artifacts + pattern: coverage-data-* - run: mv ci-artifacts/**/.coverage* ./ - name: Setup python uses: actions/setup-python@v5