Download the certificate on macOS

This commit is contained in:
joshaber 2016-06-16 15:17:50 -07:00
parent 1338f8c4ae
commit 9dcde259ec
2 changed files with 15 additions and 0 deletions

View file

@ -57,6 +57,10 @@ const options = {
}
}
if (process.platform === 'darwin') {
cp.execSync('setup-macos-keychain')
}
packager(options, (error, appPaths) => {
if (error) {
console.error(error)

11
script/setup-macos-keychain Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh
curl -H 'Authorization: token $DESKTOPBOT_TOKEN' -H 'Accept: application/vnd.github.v3.raw' -O -L https://api.github.com/repos/desktop/desktop-secrets/developer-id-cert.p12
KEY_CHAIN=mac-build.keychain
security create-keychain -p travis $KEY_CHAIN
security default-keychain -s $KEY_CHAIN
security unlock-keychain -p travis $KEY_CHAIN
security set-keychain-settings -t 3600 -u $KEY_CHAIN
security import developer-id-cert.p12 -k $KEY_CHAIN -P $KEY_PASSWORD -T /usr/bin/codesign