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 }}