File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -85,20 +85,20 @@ jobs:
85
85
run : |
86
86
cd electron
87
87
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env
88
- echo "APPLEID =${{ secrets.APPLEID }}" >> .env
89
- echo "APPLEIDPASS =${{ secrets.APPLEIDPASS }}" >> .env
90
- echo "TEAM_ID =${{ secrets.TEAM_ID }}" >> .env
88
+ echo "APPLE_ID =${{ secrets.APPLE_ID }}" >> .env
89
+ echo "APPLE_ID_PASSWORD =${{ secrets.APPLE_ID_PASSWORD }}" >> .env
90
+ echo "APPLE_TEAM_ID =${{ secrets.APPLE_TEAM_ID }}" >> .env
91
91
cd ..
92
92
93
93
- name : Build and Release Electron App
94
94
env :
95
95
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
96
96
DEBUG : electron-builder,electron-builder:*
97
- CSC_LINK : ${{ secrets.MAC_CERT_BASE64 }}
98
- CSC_KEY_PASSWORD : ${{ secrets.MAC_CERT_PASSWORD }}
99
- APPLE_ID : ${{ secrets.APPLEID }}
100
- APPLE_ID_PASSWORD : ${{ secrets.APPLEIDPASS }}
101
- APPLE_TEAM_ID : ${{ secrets.TEAM_ID }}
97
+ CSC_LINK : ${{ secrets.CSC_LINK }}
98
+ CSC_KEY_PASSWORD : ${{ secrets.CSC_KEY_PASSWORD }}
99
+ APPLE_ID : ${{ secrets.APPLE_ID }}
100
+ APPLE_ID_PASSWORD : ${{ secrets.APPLE_ID_PASSWORD }}
101
+ APPLE_TEAM_ID : ${{ secrets.APPLE_TEAM_ID }}
102
102
run : |
103
103
cd electron
104
104
yarn build
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ exports.default = async function notarizing(context) {
27
27
await notarize ( {
28
28
tool : 'notarytool' ,
29
29
appPath,
30
- teamId : process . env . TEAM_ID ,
31
- appleId : process . env . APPLEID ,
32
- appleIdPassword : process . env . APPLEIDPASS ,
30
+ teamId : process . env . APPLE_TEAM_ID ,
31
+ appleId : process . env . APPLE_ID ,
32
+ appleIdPassword : process . env . APPLE_ID_PASSWORD ,
33
33
} ) ;
34
34
35
35
console . info ( 'Notarization completed successfully' ) ;
You can’t perform that action at this time.
0 commit comments