Skip to content

Commit

Permalink
ci: fix space escaping in file paths for zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
gaheldev committed May 20, 2024
1 parent 394dc6f commit 12043e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ jobs:
- name: Create release archive for Linux
run: |
mkdir linux-64b
mv Linux-64b-LV2/Gahel\ inflator.lv2 linux-64b/
mv Linux-64b-VST3/Gahel\ inflator.lv2 linux-64b/
$lv2Build = "Linux-64b-LV2/Gahel inflator.lv2"
$vst3Build = "Linux-64b-VST3/Gahel inflator.vst3"
mv $lv2Build linux-64b/
mv $vst3Build linux-64b/
zip -r linux-64b.zip linux-64b
working-directory: ./plugin/builds

Expand Down

0 comments on commit 12043e4

Please sign in to comment.