Skip to content

Commit ec4a6e9

Browse files
committed
wip
1 parent ff93f66 commit ec4a6e9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/build-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
shell: bash
198198
run: |
199199
set -eo pipefail
200-
APPEX_PATH="./${{matrix.project}}.app/Contents/PlugIns/${{matrix.project}}AUv3.appex"
200+
APPEX_PATH="./${{matrix.project}}.app/Contents/PlugIns/${{matrix.project}}.appex"
201201
if [ -d "$APPEX_PATH" ]; then
202202
echo "Found AUv3 appex at $APPEX_PATH"
203203
echo "Registering with pluginkit..."

.github/workflows/build-win.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,8 @@ jobs:
135135
shell: pwsh
136136
run: |
137137
Invoke-WebRequest -Uri "https://github.com/free-audio/clap-validator/releases/download/${{env.CLAP_VALIDATOR_VER}}/clap-validator-${{env.CLAP_VALIDATOR_VER}}-windows.zip" -OutFile clap-validator.zip
138-
Expand-Archive -Path clap-validator.zip -DestinationPath clap-validator-tmp -Force
139-
Move-Item -Path clap-validator-tmp/binaries/clap-validator.exe -Destination ./clap-validator.exe
140-
Remove-Item -Recurse -Force clap-validator-tmp, clap-validator.zip
138+
Expand-Archive -Path clap-validator.zip -DestinationPath . -Force
139+
Remove-Item -Force clap-validator.zip
141140
142141
- name: Test VST3 with Pluginval
143142
shell: pwsh

0 commit comments

Comments
 (0)