Skip to content

Commit

Permalink
ci: adjust release artifact naming and downloading (#177)
Browse files Browse the repository at this point in the history
Update artifact naming to include job target and enable pattern-based
artifact download with merged artifacts handling.
  • Loading branch information
steebchen authored Feb 14, 2025
1 parent 0517709 commit 6af21ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Upload release artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
name: artifacts-${{ matrix.job.target }}
path: ${{ steps.artifacts.outputs.file_name }}
retention-days: 1

Expand All @@ -125,8 +125,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v4
with:
name: artifacts
pattern: artifacts-*
path: artifacts
merge-multiple: true
- id: version_info
run: |
cargo install cargo-get
Expand Down

0 comments on commit 6af21ac

Please sign in to comment.