Skip to content

Commit a93a8a1

Browse files
committed
build: fix Windows installation location to x64 folder
1 parent e705aaa commit a93a8a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ jobs:
258258
run: Add-Content $env:GITHUB_PATH "C:\Program Files (x86)\WiX Toolset v3.11\bin"
259259

260260
- name: Compile WiX file
261-
run: candle.exe smartthings.wxs -ext WixUIExtension
261+
run: candle.exe smartthings.wxs -ext WixUIExtension -arch x64
262262
working-directory: packages\cli\wix
263263
env:
264264
SMARTTHINGS_SEMVER: ${{ steps.safe-semver.outputs.version }}

packages/cli/wix/smartthings.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<!-- https://github.com/kurtanr/WiXInstallerExamples/tree/main/00_HelloWorldInstaller#directory -->
2424
<Directory Id="TARGETDIR" Name="SourceDir">
25-
<Directory Id="ProgramFilesFolder">
25+
<Directory Id="ProgramFiles64Folder">
2626
<Directory Id="INSTALLDIR" Name="SmartThings" />
2727
</Directory>
2828
</Directory>

0 commit comments

Comments
 (0)