Skip to content

Commit

Permalink
ci: update Apple dev team ID to update the org
Browse files Browse the repository at this point in the history
Otherwise we get failures when notarizing the app:
```json
{
  "message": "Unable to upload your app for notarization.",
  "userInfo": {
    "NSLocalizedDescription": "Unable to upload your app for notarization.",
    "NSLocalizedFailureReason": "--team-id DTX7Z4U3YA is not valid for the user name specified. Use --list-providers."
  },
  "code": -1027
}
```
Related: status-im/status-mobile#14411

Signed-off-by: Jakub Sokołowski <[email protected]>
  • Loading branch information
jakubgs authored and iurimatias committed Dec 8, 2022
1 parent 53a1774 commit 1849839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/Jenkinsfile.macos
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ pipeline {
/* Control output the filename */
STATUS_CLIENT_DMG = "pkg/${utils.pkgFilename(ext: 'dmg')}"
/* Apple Team ID for Notarization */
MACOS_NOTARIZE_TEAM_ID = "DTX7Z4U3YA"
MACOS_NOTARIZE_TEAM_ID = "8B5X2M6H2Y"
}

stages {
stage('Deps') {
steps {
steps {
sh 'make update'
withCredentials([
usernamePassword( /* For fetching HomeBrew bottles. */
Expand Down

0 comments on commit 1849839

Please sign in to comment.