1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 21:50:15 +00:00

Always use app store cert

This commit is contained in:
Anders Åberg
2025-02-18 12:01:21 +01:00
parent e4c3179354
commit 9b3e5a5bfd
3 changed files with 3 additions and 4 deletions

View File

@@ -136,7 +136,7 @@
"entitlementsLoginHelper": "resources/entitlements.mas.loginhelper.plist",
"provisioningProfile": "bitwarden_desktop_appstore.provisionprofile",
"hardenedRuntime": true,
"identity": "M6N9P773KS",
"identity": "Bitwarden Inc.",
"extendInfo": {
"LSMinimumSystemVersion": "12",
"ElectronTeamID": "LTZ2PFU5D6"

View File

@@ -42,7 +42,7 @@ async function run(context) {
if (process.env.GITHUB_ACTIONS === "true") {
if (is_mas) {
id = is_mas_dev
? "E2F4EAED32FD109DFB50C4191B0B9CB0AEE59E67"
? "3rd Party Mac Developer Application: Bitwarden Inc"
: "3rd Party Mac Developer Application: Bitwarden Inc";
} else {
id = "Developer ID Application: 8bit Solutions LLC";

View File

@@ -64,8 +64,7 @@ async function run(context) {
);
if (context.targets.some((e) => e.name === "mas-dev")) {
deepAssign(masBuildOptions, {
type: "development",
identity: "E2F4EAED32FD109DFB50C4191B0B9CB0AEE59E67",
identity: "Bitwarden Inc",
});
}
if (context.packager.packagerOptions.prepackaged == null) {