Skip to content

Commit 4d583e9

Browse files
committed
add teamId
1 parent 9051ab9 commit 4d583e9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ jobs:
116116
CSC_FOR_PULL_REQUEST: true
117117
APPLEID: ${{ secrets.APPLEID }}
118118
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
119+
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
119120
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
120121
CSC_LINK: ${{ secrets.CSC_LINK }}
121122
run: |

scripts/notarize.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ exports.default = async function notarizing(context) {
1818
appPath: `${appOutDir}/${appName}.app`,
1919
appleId: process.env.APPLEID,
2020
appleIdPassword: process.env.APPLEIDPASS,
21-
tool: 'notarytool'
21+
tool: 'notarytool',
22+
teamId: process.env.APPLE_TEAM_ID
2223
});
2324
};

0 commit comments

Comments
 (0)