Commit c23f8a7

Nick Faro committed on
Don't add redundant HT binary to zip file
commit c23f8a79a5c09e2cd1cb555e90aeabdcbf938b8a parent 694d417
1 changed files +6−1
Modified.github/workflows/build.yml +6−1
@@ -158,8 +158,13 @@ jobs:
158 - name: Zip files (preserving permissions) 158 - name: Zip files (preserving permissions)
159 shell: bash 159 shell: bash
160 run: | 160 run: |
161 shopt -s extglob
161 pushd packaging 162 pushd packaging
162 zip -r ../build.zip * 163 if [ "${{ matrix.name }}" == "Mac" ]; then
164 zip -r ../build.zip !(hUGETracker)
165 else
166 zip -r ../build.zip *
167 fi
163 popd 168 popd
164 169
165 - name: Store build 170 - name: Store build