Skip to content

Commit

Permalink
fix(mas): Allow signing with "3rd Party Mac Developer Application" (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
csett86 authored Jul 4, 2022
1 parent 8279d05 commit 28c07b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/little-ways-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

fix(mas): Allow signing with "3rd Party Mac Developer Application"
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/macPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -468,5 +468,5 @@ function getCertificateTypes(isMas: boolean, isDevelopment: boolean): CertType[]
if (isDevelopment) {
return isMas ? ["Mac Developer", "Apple Development"] : ["Mac Developer", "Developer ID Application"]
}
return isMas ? ["Apple Distribution"] : ["Developer ID Application"]
return isMas ? ["3rd Party Mac Developer Application", "Apple Distribution"] : ["Developer ID Application"]
}

0 comments on commit 28c07b4

Please sign in to comment.