Skip to content

Commit

Permalink
ci: fix release action not detecting patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
gaheldev committed May 20, 2024
1 parent 6921aa8 commit 953679c
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,26 @@ jobs:


# Create release for each platform
- name: Create release for LV2
# Apparently pattern matching doesn't work here
- name: Create release for Linux
if: startsWith(matrix.os,'ubuntu')
uses: softprops/action-gh-release@v2
with:
files: |
plugin/builds/${BuildPrefix}-LV2/Gahel\ inflator.lv2/
plugin/builds/Linux-64b-LV2/Gahel\ inflator.lv2/
plugin/builds/Linux-64b-VST3/Gahel\ inflator.vst3/
- name: Create release for VST3
- name: Create release for Windows
if: startsWith(matrix.os,'windows')
uses: softprops/action-gh-release@v2
with:
files: |
plugin/builds/Windows-64b-VST3/Gahel\ inflator.vst3/
- name: Create release for macos
if: startsWith(matrix.os,'macos')
uses: softprops/action-gh-release@v2
with:
files: |
plugin/builds/${BuildPrefix}-VST3/Gahel\ inflator.vst3/
plugin/builds/macos-64b-VST3/Gahel\ inflator.vst3/

0 comments on commit 953679c

Please sign in to comment.