From 99f1739a07871e6c065e0a8f95406aef2127469a Mon Sep 17 00:00:00 2001 From: Keunhyung Chung Date: Fri, 22 Dec 2023 14:48:46 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9A=92=EF=B8=8F=20Use=20`pattern`=20and=20`m?= =?UTF-8?q?erge-multiple`=20input=20in=20`download-artifact@v4`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 72d14c95..8ce39c24 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ jobs: - name: Store coverage file uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python_version }} path: .coverage.${{ matrix.python_version }} coverage: @@ -270,7 +270,8 @@ jobs: - uses: actions/download-artifact@v4 id: download with: - name: "coverage" + pattern: coverage-* + merge-multiple: true - name: Coverage comment id: coverage_comment