Skip to content

Commit

Permalink
fix release asset name
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed May 28, 2023
1 parent b263f38 commit 748e70f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ jobs:
- if: (github.event_name == 'release' && github.event.action == 'published')
uses: svenstaro/upload-release-action@v2
with:
asset_name: packetraven-${{ runner.os }}
file: target/release/${{ runner.os == 'Windows' && 'packetraven.exe' || 'packetraven' }}
asset_name: packetraven_${{ runner.os }}${{ runner.os == 'Windows' && '.exe' || '' }}
file: target/release/packetraven${{ runner.os == 'Windows' && '.exe' || '' }}

0 comments on commit 748e70f

Please sign in to comment.