Skip to content

Commit

Permalink
fix: adding .exe when moving the executable
Browse files Browse the repository at this point in the history
  • Loading branch information
MidKnightXI committed Jul 21, 2024
1 parent 9bb8c91 commit c1771eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
New-Item -ItemType Directory -Path tempArchive -Force
Copy-Item -Path "./module.json" -Destination "tempArchive/module.json"
Copy-Item -Path "./bin/Release/net8.0/win-x64/publish/whichcam.exe" -Destination "tempArchive/whichcam"
Copy-Item -Path "./bin/Release/net8.0/win-x64/publish/whichcam.exe" -Destination "tempArchive/whichcam.exe"
Compress-Archive -Path "tempArchive/*" -DestinationPath "whichcam-windows.zip"
Remove-Item -Recurse -Force tempArchive
Expand Down

0 comments on commit c1771eb

Please sign in to comment.