From 35a45ece59a772337cc97dcd3b7cc4fd9cecd4b2 Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Wed, 3 Jan 2024 18:17:40 -0500 Subject: [PATCH] Ensure release workflow downloads all package artifacts --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a847266851..351085c150 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,8 @@ jobs: - name: Get packages uses: actions/download-artifact@v4.1.0 with: - name: ${{ needs.ci.outputs.artifact-name }} + pattern: ${{ needs.ci.outputs.artifact-name }}-* + merge-multiple: true - name: Create release uses: ncipollo/release-action@v1.13.0 @@ -64,9 +65,10 @@ jobs: - "toga_winforms" steps: - name: Get packages - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.1.0 with: - name: ${{ needs.ci.outputs.artifact-name }} + pattern: ${{ needs.ci.outputs.artifact-name }}-* + merge-multiple: true - name: Extract ${{ matrix.package }} run: |