Skip to content

Commit e01720c

Browse files
cfsmp3claude
andcommitted
fix: Use WiX extension by name instead of hardcoded path
The WiX v4 extension path was hardcoded and didn't match the actual installed location. WiX v4 allows referencing globally installed extensions by name directly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent f80b1f2 commit e01720c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: Compress-Archive -Path ./installer/* -DestinationPath ./CCExtractor_win_portable.zip
8585
working-directory: ./windows
8686
- name: Build installer
87-
run: wix build -ext "$HOME\.wix\extensions\WixToolset.UI.wixext\4.0.0-preview.0\tools\WixToolset.UI.wixext.dll" -d "AppVersion=${{ steps.get_version.outputs.VERSION }}.0.0" -o CCExtractor.msi installer.wxs
87+
run: wix build -ext WixToolset.UI.wixext -d "AppVersion=${{ steps.get_version.outputs.VERSION }}.0.0" -o CCExtractor.msi installer.wxs
8888
working-directory: ./windows
8989
- name: Upload as asset
9090
uses: AButler/[email protected]

0 commit comments

Comments
 (0)