Skip to content

Commit 7c1c7a4

Browse files
committed
log it
1 parent 291647b commit 7c1c7a4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build-win.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,16 @@ jobs:
118118
run: |
119119
Get-ChildItem -Filter "*-${{env.ARTIFACT_EXT}}.zip" | ForEach-Object { Expand-Archive -Path $_.FullName -DestinationPath . -Force }
120120
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+
121131
- name: Cache Pluginval
122132
id: cache-pluginval
123133
uses: actions/cache@v3

0 commit comments

Comments
 (0)