We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 291647b commit 7c1c7a4Copy full SHA for 7c1c7a4
.github/workflows/build-win.yml
@@ -118,6 +118,16 @@ jobs:
118
run: |
119
Get-ChildItem -Filter "*-${{env.ARTIFACT_EXT}}.zip" | ForEach-Object { Expand-Archive -Path $_.FullName -DestinationPath . -Force }
120
121
+ - name: List extracted files
122
+ shell: bash
123
+ run: |
124
+ echo "=== Listing all files ==="
125
+ ls -la
126
+ echo "=== Looking for CLAP files ==="
127
+ find . -name "*.clap" 2>/dev/null || echo "No .clap files found"
128
+ echo "=== Looking for VST3 files ==="
129
+ find . -name "*.vst3" 2>/dev/null || echo "No .vst3 files found"
130
+
131
- name: Cache Pluginval
132
id: cache-pluginval
133
uses: actions/cache@v3
0 commit comments