Skip to content

Commit

Permalink
Fix Windows build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
13MrBlackCat13 committed Nov 7, 2024
1 parent fba64f9 commit 1c0e027
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,14 @@ jobs:
--app-version ${{ needs.prepare.outputs.version }} `
--win-dir-chooser `
--win-menu `
--win-shortcut `
--icon src/main/resources/icon.ico
Compress-Archive -Path .\Sudoku.exe -DestinationPath ${{ matrix.artifact_name }}
--win-shortcut
if (Test-Path "Sudoku.exe") {
Compress-Archive -Path "Sudoku.exe" -DestinationPath ${{ matrix.artifact_name }}
} else {
Write-Error "Sudoku.exe not found!"
exit 1
}
# Linux-specific steps
- name: Build Linux Package
Expand Down

0 comments on commit 1c0e027

Please sign in to comment.