Skip to content

Commit

Permalink
fix: adds platform and arch name to executable files
Browse files Browse the repository at this point in the history
  • Loading branch information
vpominchuk committed Oct 31, 2023
1 parent d961ad7 commit d462228
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./wmetrics.exe
asset_name: wmetrics.exe
asset_name: wmetrics_win_x64.exe
asset_content_type: application/octet-stream

# Build for Windows 32
Expand All @@ -56,7 +56,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./wmetrics.exe
asset_name: wmetrics.exe
asset_name: wmetrics_win_x86.exe
asset_content_type: application/octet-stream

# Build for Linux 64
Expand All @@ -70,7 +70,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./wmetrics
asset_name: wmetrics
asset_name: wmetrics_linux_x64
asset_content_type: application/octet-stream

# Build for Linux 32
Expand All @@ -84,7 +84,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./wmetrics
asset_name: wmetrics
asset_name: wmetrics_linux_x86
asset_content_type: application/octet-stream

# Build for macOS 64
Expand All @@ -98,6 +98,6 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./wmetrics
asset_name: wmetrics
asset_name: wmetrics_macos_x64
asset_content_type: application/octet-stream

0 comments on commit d462228

Please sign in to comment.