Files
cypress/electron-builder.json
Bill Glesias d34fdcf60e chore: implement remote executable signing for windows binary builds (#28636)
* chore: implement remote executable signing for windows to comply with
new  signing key storage requirements [run ci]

* bump circleci cache to avoid electron install issues [run ci]

* chore: use fs-extra to ensure and create directory for temporary files and use os package to locate OS tmp directory
2024-01-08 11:38:22 -05:00

28 lines
659 B
JSON

{
"productName": "Cypress",
"appId": "com.electron.cypress",
"target": "zip",
"mac": {
"target": "zip",
"forceCodeSigning": true,
"publish": null,
"hardenedRuntime": true,
"entitlements": "./scripts/entitlements.mac.inherit.plist",
"entitlementsInherit": "./scripts/entitlements.mac.inherit.plist",
"type": "distribution"
},
"linux": {
"target": "dir",
"executableName": "Cypress"
},
"win": {
"signingHashAlgorithms": [
"sha256"
],
"sign": "./scripts/windows-sign.js",
"target": "dir"
},
"afterPack": "./scripts/after-pack-hook.js",
"afterSign": "./scripts/after-sign-hook.js"
}