From dc985bd4f5d0bf83bc15576d00ba95d797ecdcbf Mon Sep 17 00:00:00 2001 From: aboyko Date: Fri, 17 Nov 2023 15:42:25 -0500 Subject: [PATCH] GHA: Debug notarization issue --- .github/workflows/check-notarization.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/check-notarization.yml diff --git a/.github/workflows/check-notarization.yml b/.github/workflows/check-notarization.yml new file mode 100644 index 0000000000..63c14baf53 --- /dev/null +++ b/.github/workflows/check-notarization.yml @@ -0,0 +1,18 @@ +name: Check Notarization + +on: + workflow_dispatch: + inputs: + id: + description: Notarization ID + required: true + type: string + +jobs: + + eclipse-distro-build: + runs-on: macos-latest + steps: + name: Notarization Logs + run: | + xcrun notarytool log ${{ inputs.id }} --apple-id ${{ secrets.AC_USERNAME }} --team-id ${{ secrets.APPLE_TEAM_ID }} --password ${{ secrets.AC_PASSWORD }}