Skip to content

Commit a744478

Browse files
⚗️ List build artifacts
1 parent 7412f90 commit a744478

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ jobs:
6565
with:
6666
xcode-version: latest-stable
6767

68+
- name: Install "tree"
69+
if: runner.os == 'MacOS'
70+
run: brew install tree
71+
6872
- uses: actions/checkout@v4
6973
with:
7074
submodules: true
@@ -116,12 +120,22 @@ jobs:
116120
if: runner.os == 'MacOS'
117121
run: ./scripts/nest -cd ${{ matrix.plugin_buildir }}/${{ matrix.build_prefix }}/${{ matrix.au_prefix }}${{ env.PLUGIN_NAME }}.component
118122

123+
- name: List AU artifacts
124+
if: runner.os == 'MacOS'
125+
run: tree ${{ matrix.plugin_buildir }}/${{ matrix.build_prefix }}/${{ matrix.au_prefix }}${{ env.PLUGIN_NAME }}.component
126+
119127
- name: Move VST3 artifacts
120128
run: ./scripts/nest -cd ${{ matrix.plugin_buildir }}/${{ matrix.build_prefix }}/${{ matrix.vst3_prefix }}${{ env.PLUGIN_NAME }}.vst3
121129

130+
- name: List VST3 artifacts
131+
run: tree ${{ matrix.plugin_buildir }}/${{ matrix.build_prefix }}/${{ matrix.vst3_prefix }}${{ env.PLUGIN_NAME }}.vst3
132+
122133
- name: Move Standalone artifacts
123134
run: ./scripts/nest -cd ${{ matrix.plugin_buildir }}/${{ matrix.build_prefix }}/${{ matrix.standalone_prefix }}${{ env.PLUGIN_NAME }}${{ matrix.standalone_ext }}
124135

136+
- name: List Standalone artifacts
137+
run: tree ${{ matrix.plugin_buildir }}/${{ matrix.build_prefix }}/${{ matrix.standalone_prefix }}${{ env.PLUGIN_NAME }}${{ matrix.standalone_ext }}
138+
125139
- name: Upload AU
126140
if: runner.os == 'MacOS'
127141
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)