Browse Source

fix: add missing extension for windows executables

pull/3410/head
Wing-Kam Wong 2 years ago
parent
commit
b0127e4b95
  1. 4
      .github/workflows/release-executables.yml

4
.github/workflows/release-executables.yml

@ -108,7 +108,7 @@ jobs:
with: with:
upload_url: ${{ steps.get_release.outputs.upload_url }} upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./scripts/pkg-executable/dist/Noco-win-arm64.exe asset_path: ./scripts/pkg-executable/dist/Noco-win-arm64.exe
asset_name: Noco-win-arm64 asset_name: Noco-win-arm64.exe
asset_content_type: application/octet-stream asset_content_type: application/octet-stream
- name: Upload win-x64 build to asset - name: Upload win-x64 build to asset
@ -118,7 +118,7 @@ jobs:
with: with:
upload_url: ${{ steps.get_release.outputs.upload_url }} upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./scripts/pkg-executable/dist/Noco-win-x64.exe asset_path: ./scripts/pkg-executable/dist/Noco-win-x64.exe
asset_name: Noco-win-x64 asset_name: Noco-win-x64.exe
asset_content_type: application/octet-stream asset_content_type: application/octet-stream
- name: Upload linux-arm64 build to asset - name: Upload linux-arm64 build to asset

Loading…
Cancel
Save