Skip to content

Commit 250ffae

Browse files
authored
Update electron.yaml
1 parent 7e753b6 commit 250ffae

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/electron.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,18 @@ jobs:
6666
if: matrix.os == 'macos-latest'
6767
run: echo "BUILD_ARGS=--universal" >> $GITHUB_ENV
6868

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+
6981
- name: Install Dependencies
7082
run: |
7183
cd launcher && npm i

0 commit comments

Comments
 (0)