File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 49
49
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
50
50
AC_USERNAME : ${{ secrets.AC_USERNAME }}
51
51
AC_PASSWORD : ${{ secrets.AC_PASSWORD }}
52
+ AC_TEAM_ID : ${{ secrets.AC_TEAM_ID }}
52
53
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
53
54
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
54
55
# IS_NIGHTLY: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main') }}
Original file line number Diff line number Diff line change @@ -35,9 +35,11 @@ exports.default = async function notarizing(context) {
35
35
console . log ( `>>> Notarizing ${ appBundleId } at ${ appOutDir } /${ appName } .app...` ) ;
36
36
37
37
return await notarize ( {
38
+ tool : 'notarytool' ,
38
39
appBundleId,
39
40
appPath : `${ appOutDir } /${ appName } .app` ,
40
41
appleId : process . env . AC_USERNAME ,
41
42
appleIdPassword : process . env . AC_PASSWORD ,
43
+ teamId : process . env . AC_TEAM_ID ,
42
44
} ) ;
43
45
} ;
You can’t perform that action at this time.
0 commit comments