Skip to content

Commit fcf2a4a

Browse files
committed
fix: Correct Windows artifact paths (CLAP in build/CLAP/Release/)
1 parent 582461d commit fcf2a4a

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)