File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6666 shell : bash
6767 run : |
6868 echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
69- echo "artifact-name=my_plugin_${{ matrix.os }}" >> "$GITHUB_OUTPUT"
69+ echo "artifact-name=my_plugin_${{ matrix.os }}_${{ matrix.c_compiler }} " >> "$GITHUB_OUTPUT"
7070
7171 - name : Configure CMake
7272 run : >
7979 - name : Build
8080 run : cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
8181
82- - name : Upload Build Artifacts (on Release)
82+ - name : Zip artifacts (excluding SharedCode)
83+ run : |
84+ cd ${{ steps.strings.outputs.build-output-dir }}/temper_artefacts/Release
85+ zip -r ../../filtered_artifact.zip . -x '*SharedCode*'
86+
87+ - name : Upload zipped artifact
8388 uses : actions/upload-artifact@v4
8489 with :
8590 name : ${{ steps.strings.outputs.artifact-name }}
86- path : |
87- ${{ steps.strings.outputs.build-output-dir }}/temper_artefacts/**/*
91+ path : filtered_artifact.zip
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ juce_add_plugin(temper
2626 COMPANY_NAME "creativeintent"
2727 COMPANY_WEBSITE "https://github.com/creativeintent/temper/tree/master"
2828 PLUGIN_CODE T3mp
29- FORMATS Standalone VST3 LV2
29+ FORMATS Standalone VST3 LV2 AU
3030 PRODUCT_NAME "temper"
3131 DESCRIPTION "temper the temperated distortion plugin"
3232 IS_SYNTH FALSE
You can’t perform that action at this time.
0 commit comments