Skip to content

Commit 248f448

Browse files
authored
Merge pull request #14 from Archie3d/tweak-artefacts
Tweak artefacts
2 parents 52a67bc + ad85e0c commit 248f448

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,10 @@ jobs:
7979
- uses: actions/upload-artifact@v3
8080
with:
8181
name: aeolus-${{ matrix.name }}
82-
path: ${{ matrix.path }}
82+
path: |
83+
${{ matrix.path }}/Standalone
84+
${{ matrix.path }}/AU
85+
${{ matrix.path }}/VST3
86+
!${{ matrix.path }}/VST3/*.exp
87+
!${{ matrix.path }}/VST3/*.lib
88+
if-no-files-found: ignore

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ set(plugin_formats
3333
Standalone
3434
)
3535

36+
if(APPLE)
37+
list(APPEND plugin_formats AU)
38+
endif()
39+
3640
juce_add_plugin(${PROJECT_NAME}
3741
VERSION "0.1.13"
3842
PLUGIN_MANUFACTURER_CODE "Arbe"

0 commit comments

Comments
 (0)