Skip to content

Commit

Permalink
rename release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
lucat1 committed Dec 7, 2023
1 parent 702d5fa commit 4a10b65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,13 @@ jobs:
with:
name: ${{ matrix.platform.name }}
path: target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
- name: Rename the binary
run: mv target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} ${{ matrix.platform.name }}
if: startsWith( github.ref, 'refs/tags/v' )
- name: Publish GitHub release
uses: softprops/action-gh-release@v1
with:
draft: false
files: target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
files: ${{ matrix.platform.name }}
# body_path: Changes.md
if: startsWith( github.ref, 'refs/tags/v' )

0 comments on commit 4a10b65

Please sign in to comment.