Skip to content

Commit

Permalink
ci: fix FFI and WebRTC builds with artifacts v4 (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbsp authored Dec 14, 2024
1 parent 2034345 commit 6dbfb96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ffi-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/webrtc-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 6dbfb96

Please sign in to comment.