From 4c4801975fd978e6a3d545859ba1aacb8d3d2e5b Mon Sep 17 00:00:00 2001 From: aoife cassidy Date: Sat, 14 Dec 2024 19:52:37 +0200 Subject: [PATCH] ci: fix FFI and WebRTC builds with artifacts v4 --- .github/workflows/ffi-builds.yml | 5 +++-- .github/workflows/webrtc-builds.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ffi-builds.yml b/.github/workflows/ffi-builds.yml index d6b90909..45ef2498 100644 --- a/.github/workflows/ffi-builds.yml +++ b/.github/workflows/ffi-builds.yml @@ -198,7 +198,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: ffi-builds + name: ffi-builds-${{ matrix.target }} path: ${{ matrix.name }}.zip release: @@ -216,7 +216,8 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: ffi-builds + name: ffi-builds-* + merge-multiple: true path: ${{ github.workspace }}/ffi-builds - name: Create draft release diff --git a/.github/workflows/webrtc-builds.yml b/.github/workflows/webrtc-builds.yml index 782daaad..f244eca1 100644 --- a/.github/workflows/webrtc-builds.yml +++ b/.github/workflows/webrtc-builds.yml @@ -153,7 +153,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: webrtc-builds + name: webrtc-builds-${{ matrix.name }}-${{ matrix.arch }} path: ${{ steps.setup.outputs.ZIP }} release: @@ -171,7 +171,8 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: webrtc-builds + name: webrtc-builds-* + merge-multiple: true path: ${{ github.workspace }}/webrtc-builds - name: Create draft release