Skip to content

Commit

Permalink
Update to actions/upload/download-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
segevfiner committed Apr 17, 2024
1 parent 4d668d7 commit 71aa9a8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: release
name: release-${{ matrix.os }}
path: ${{ steps.package.outputs.ASSET }}

- name: Release
Expand All @@ -65,3 +65,13 @@ jobs:
with:
draft: true
files: ${{ steps.package.outputs.ASSET }}

merge:
runs-on: ubuntu-22.04
needs: release
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: release
pattern: release-*

0 comments on commit 71aa9a8

Please sign in to comment.