Skip to content

Commit 26e0f64

Browse files
authored
fix(windows): Configure MSI as 64-bit installer
2 parents fd15528 + a1ed940 commit 26e0f64

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
run: Compress-Archive -Path ./installer/* -DestinationPath ./CCExtractor.${{ steps.get_version.outputs.DISPLAY_VERSION }}_win_portable.zip
110110
working-directory: ./windows
111111
- name: Build installer
112-
run: wix build -ext WixToolset.UI.wixext -d "AppVersion=${{ steps.get_version.outputs.VERSION }}" -o CCExtractor.${{ steps.get_version.outputs.DISPLAY_VERSION }}.msi installer.wxs CustomUI.wxs
112+
run: wix build -arch x64 -ext WixToolset.UI.wixext -d "AppVersion=${{ steps.get_version.outputs.VERSION }}" -o CCExtractor.${{ steps.get_version.outputs.DISPLAY_VERSION }}.msi installer.wxs CustomUI.wxs
113113
working-directory: ./windows
114114
- name: Upload as asset
115115
uses: AButler/upload-release-assets@v3.0

windows/installer.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
KeyPath="yes"/>
4040
</Component>
4141
</StandardDirectory>
42-
<StandardDirectory Id="ProgramFiles6432Folder">
42+
<StandardDirectory Id="ProgramFiles64Folder">
4343
<Directory Id="INSTALLFOLDER" Name="CCExtractor">
4444
<Directory Id="CCX_tessdata" Name="tessdata"/>
4545
<Directory Id="CCX_data" Name="data">

0 commit comments

Comments
 (0)