We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e753b6 commit 250ffaeCopy full SHA for 250ffae
.github/workflows/electron.yaml
@@ -66,6 +66,18 @@ jobs:
66
if: matrix.os == 'macos-latest'
67
run: echo "BUILD_ARGS=--universal" >> $GITHUB_ENV
68
69
+ - name: Check notarization credentials (Apple ID still valid)
70
+ if: matrix.os == 'macos-latest'
71
+ run: |
72
+ xcrun notarytool history \
73
+ --apple-id "$APPLE_ID" \
74
+ --password "$APPLE_APP_SPECIFIC_PASSWORD" \
75
+ --team-id "$APPLE_TEAM_ID"
76
+ env:
77
+ APPLE_ID: ${{ secrets.apple_id }}
78
+ APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.apple_app_specific_password }}
79
+ APPLE_TEAM_ID: ${{ secrets.team_id }}
80
+
81
- name: Install Dependencies
82
run: |
83
cd launcher && npm i
0 commit comments