diff --git a/.github/workflows/cmake_ctest.yml b/.github/workflows/cmake_ctest.yml index 6716a06..ada9fc2 100644 --- a/.github/workflows/cmake_ctest.yml +++ b/.github/workflows/cmake_ctest.yml @@ -132,7 +132,6 @@ jobs: echo "ARTIFACT_NAME=${{ env.PRODUCT_NAME }}-${{ env.VERSION }}-${{ matrix.name }}" >> $GITHUB_ENV - name: Pluginval - working-directory: ${{ env.BUILD_DIR }} shell: bash run: | curl -LO "https://github.com/Tracktion/pluginval/releases/download/v1.0.3/pluginval_${{ matrix.name }}.zip" @@ -140,7 +139,6 @@ jobs: ${{ matrix.pluginval-binary }} --strictness-level 10 --verbose --validate "${{ env.VST3_PATH }}" - name: Codesign (macOS) - working-directory: ${{ env.BUILD_DIR }} if: ${{ matrix.name == 'macOS' }} run: | # Each plugin must be code signed @@ -150,13 +148,12 @@ jobs: - name: Add Custom Icons (macOS) if: ${{ matrix.name == 'macOS' }} - working-directory: ${{ env.BUILD_DIR }} run: | # add the icns as its own icon resource (meta!) - sips -i ../packaging/pamplejuce.icns + sips -i packaging/pamplejuce.icns # Grab the resource, put in tempfile - DeRez -only icns ../packaging/pamplejuce.icns > /tmp/icons + DeRez -only icns packaging/pamplejuce.icns > /tmp/icons # Stuff the resource into the strange Icon? file's resource fork Rez -a /tmp/icons -o "${{ env.VST3_PATH }}/Icon"$'\r'