From d3558eabcdfe07386062b1af2456e1938ee92353 Mon Sep 17 00:00:00 2001 From: James H Ball Date: Tue, 31 Dec 2024 18:57:37 +0000 Subject: [PATCH] Update notarisation script --- .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 006c450..0339058 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -86,7 +86,7 @@ jobs: run: productsign -s "${{ secrets.APPLE_DEVELOPER_ID_INSTALLER }}" "${{ github.workspace }}/packaging/build/osci-render.pkg" "${{ github.workspace }}/bin/osci-render.pkg" - name: Notarize installer - run: npx notarize-cli --file "${{ github.workspace }}/bin/osci-render.pkg" --bundle-id com.osci-render.pkg --username ${{ secrets.APPLE_ID }} --password ${{ secrets.APPLE_NOTARIZATION_PASSWORD }} + run: xcrun altool --notarize-app -f "${{ github.workspace }}/bin/osci-render.pkg" --primary-bundle-id com.osci-render.pkg --username "${{ secrets.APPLE_ID }}" --password "${{ secrets.APPLE_NOTARIZATION_PASSWORD }}" - name: Upload Artifact uses: actions/upload-artifact@v3