Skip to content

Commit

Permalink
Fix uploaded asset names in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Apr 19, 2024
1 parent 11a35db commit 445bdaf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -85,4 +85,6 @@ jobs:
- name: Upload the binary to the release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.ref_name }} target/${{ matrix.target }}/release/asciinema#asciinema-${{ matrix.target }}
run: |
mv target/${{ matrix.target }}/release/asciinema target/release/asciinema-${{ matrix.target }}
gh release upload ${{ github.ref_name }} target/release/asciinema-${{ matrix.target }}

0 comments on commit 445bdaf

Please sign in to comment.