Skip to content

Commit df692f2

Browse files
cfsmp3claude
andcommitted
fix(ci): Update Windows release build to use x64 platform
The solution file only has x64 configurations (Release-Full|x64, Debug-Full|x64). The workflow was incorrectly trying to build with Win32 platform which doesn't exist. Changes: - Platform=Win32 → Platform=x64 - Output path ./Release-Full/ → ./x64/Release-Full/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 419fc46 commit df692f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
LLVM_CONFIG_PATH: "C:\\Program Files\\LLVM\\bin\\llvm-config"
3535
CARGO_TARGET_DIR: "..\\..\\windows"
3636
BINDGEN_EXTRA_CLANG_ARGS: -fmsc-version=0
37-
run: msbuild ccextractor.sln /p:Configuration=Release-Full /p:Platform=Win32
37+
run: msbuild ccextractor.sln /p:Configuration=Release-Full /p:Platform=x64
3838
working-directory: ./windows
3939
- name: Copy files to directory for installer
40-
run: mkdir installer; cp ./Release-Full/ccextractorwinfull.exe ./installer; cp ./Release-Full/*.dll ./installer
40+
run: mkdir installer; cp ./x64/Release-Full/ccextractorwinfull.exe ./installer; cp ./x64/Release-Full/*.dll ./installer
4141
working-directory: ./windows
4242
- name: install WiX
4343
run: dotnet tool install --global wix --version 4.0.0-preview.0 && wix extension -g add WixToolset.UI.wixext

0 commit comments

Comments
 (0)