Skip to content

Commit

Permalink
ci: fix empty zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
gaheldev committed May 20, 2024
1 parent dd842ff commit 394dc6f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Release

on:
push:
# tags:
# - 'v*.*.*'
tags:
- 'v*.*.*'


# Common variables for all platforms (ldc is hardcoded in windows job)
Expand Down Expand Up @@ -91,8 +91,11 @@ jobs:
# Create release archives
- name: Create release archive for Linux
run: |
zip plugin/builds/linux-64b.zip "plugin/builds/Linux-64b-LV2/Gahel inflator.lv2/" "plugin/builds/Linux-64b-VST3/Gahel inflator.vst3/"
ls -R plugin/builds/
mkdir linux-64b
mv Linux-64b-LV2/Gahel\ inflator.lv2 linux-64b/
mv Linux-64b-VST3/Gahel\ inflator.lv2 linux-64b/
zip -r linux-64b.zip linux-64b
working-directory: ./plugin/builds

# TODO: other platforms

Expand Down

0 comments on commit 394dc6f

Please sign in to comment.