Browse Source

Preserve `.exe` suffix for Windows releases (#3680)

In the release workflow we did add the `.exe` suffix for Windows builds, since Windows primarily looks at the extension of the file to know what the file is.
pull/3683/head
Haled Odat 3 months ago committed by GitHub
parent
commit
318aa9271c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/release.yml

2
.github/workflows/release.yml

@ -104,7 +104,7 @@ jobs:
os: windows-2019
rust: stable
target: x86_64-pc-windows-msvc
asset_name: boa-windows-amd64
asset_name: boa-windows-amd64.exe
binary_name: boa.exe
runs-on: ${{ matrix.os }}
steps:

Loading…
Cancel
Save