File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,14 +90,18 @@ jobs:
9090 run : |
9191 New-Item -ItemType Directory -Force -Path artifacts/windows
9292
93- # Package CLAP
94- Compress-Archive -Path build/${{ env.BUILD_TYPE }}/JamWide.clap -DestinationPath artifacts/windows/JamWide-Windows-CLAP.zip
93+ # Debug: Show what was built
94+ Write-Host "=== Build output structure ==="
95+ Get-ChildItem -Path build -Recurse -Include "*.clap","*.vst3" | Select-Object FullName
9596
96- # Package VST3
97+ # CLAP is in build/CLAP/Release/JamWide.clap
98+ Compress-Archive -Path build/CLAP/${{ env.BUILD_TYPE }}/JamWide.clap -DestinationPath artifacts/windows/JamWide-Windows-CLAP.zip
99+
100+ # VST3 is a folder bundle in build/Release/JamWide.vst3/
97101 Compress-Archive -Path build/${{ env.BUILD_TYPE }}/JamWide.vst3 -DestinationPath artifacts/windows/JamWide-Windows-VST3.zip
98102
99103 # Create combined package
100- Compress-Archive -Path build/${{ env.BUILD_TYPE }}/JamWide.clap, build/${{ env.BUILD_TYPE }}/JamWide.vst3 -DestinationPath artifacts/windows/JamWide-Windows-All.zip
104+ Compress-Archive -Path build/CLAP/ ${{ env.BUILD_TYPE }}/JamWide.clap, build/${{ env.BUILD_TYPE }}/JamWide.vst3 -DestinationPath artifacts/windows/JamWide-Windows-All.zip
101105
102106 - name : Upload Windows artifacts
103107 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments