From 6000066fc5b37f7ed55ab945f41333ee90019e73 Mon Sep 17 00:00:00 2001 From: Sudara Date: Tue, 12 Jul 2022 13:06:24 +0200 Subject: [PATCH] Actually use the macOS entitlements during code signing (#76) --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5c3fe89..d095ba2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -130,7 +130,7 @@ jobs: - name: Codesign (macOS) if: ${{ matrix.name == 'macOS' }} - run: codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v ${{ env.APP_DIR }}/${{ matrix.app }} --deep --strict --options=runtime --timestamp + run: codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v ${{ env.APP_DIR }}/${{ matrix.app }} --entitlements ${{ env.BUILD_DIR }}/${{ env.BINARY_NAME }}_artefacts/JuceLibraryCode/${{ env.BINARY_NAME }}.entitlements --deep --strict --options=runtime --timestamp - name: "Notarize and staple (macOS)" if: ${{ matrix.name == 'macOS' }}