Give release binaries file extensions

This may make it more clear to users that these are precompiled, binary
files. This is especially relevant on Windows, where the convention is
that executable files have a .exe` extension, as seen in #49.
This commit is contained in:
Nick Groenen 2022-01-02 12:08:50 +01:00
parent 84308c9f1f
commit 67cd5ac738
No known key found for this signature in database
GPG Key ID: 4F0AD019928AE098
1 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ jobs:
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: target/release/obsidian-export
asset_name: obsidian-export_Linux-x86_64
asset_name: obsidian-export_Linux-x86_64.bin
asset_content_type: application/octet-stream
build-windows:
@ -87,7 +87,7 @@ jobs:
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: target/release/obsidian-export.exe
asset_name: obsidian-export_Windows-x64_64
asset_name: obsidian-export_Windows-x64_64.exe
asset_content_type: application/octet-stream
build-macos:
@ -121,5 +121,5 @@ jobs:
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: target/release/obsidian-export
asset_name: obsidian-export_MacOS-x86_64
asset_name: obsidian-export_MacOS-x86_64.bin
asset_content_type: application/octet-stream