Skip to content

Commit

Permalink
Zip the release.
Browse files Browse the repository at this point in the history
We can't upload individual files as the paths are lost and the files are writing over each other.
  • Loading branch information
thejpster committed Dec 20, 2024
1 parent 2bb26a1 commit d0e8572
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ jobs:
- run: mkdir ./release
- uses: actions/download-artifact@v4
with:
path: ./release
path: ./release-${{ github.ref_name }}
- run: zip release-${{ github.ref_name }}.zip ./release-${{ github.ref_name }}
- uses: softprops/action-gh-release@v1
with:
files: |
./release/*/*
./release-${{ github.ref_name }}.zip

0 comments on commit d0e8572

Please sign in to comment.