From e4648b593d9daa6597f2f6f0865e3a211b2a1319 Mon Sep 17 00:00:00 2001 From: dxl <64101226@qq.com> Date: Wed, 2 Apr 2025 13:43:21 +0800 Subject: [PATCH] fix workflow download-artifact using 'name' instead of 'pattern' resulted in non working. --- .github/workflows/on_push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on_push.yml b/.github/workflows/on_push.yml index 1f41f3a..4e7a13e 100644 --- a/.github/workflows/on_push.yml +++ b/.github/workflows/on_push.yml @@ -28,7 +28,7 @@ jobs: - name: Download release artifacts uses: actions/download-artifact@v4 with: - name: release-artifacts-* + pattern: release-artifacts-* merge-multiple: true path: release-artifacts - name: Upload to dev release @@ -65,7 +65,7 @@ jobs: - name: Download release artifacts uses: actions/download-artifact@v4 with: - name: release-artifacts-* + pattern: release-artifacts-* merge-multiple: true path: release-artifacts - name: Upload to tagged release