mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
27 lines
736 B
Bash
Executable file
27 lines
736 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#Source: https://github.com/rllola/electron-example/blob/master/add-osx-cert.sh
|
|
|
|
set -e
|
|
|
|
KEY_CHAIN=build.keychain
|
|
CERTIFICATE_P12=certificate.p12
|
|
|
|
# Recreate the certificate from the secure environment variable
|
|
echo $MACOS_DEVID_CERTIFICATE | base64 --decode > $CERTIFICATE_P12
|
|
|
|
#create a keychain
|
|
security create-keychain -p travis $KEY_CHAIN
|
|
|
|
# Make the keychain the default so identities are found
|
|
security default-keychain -s $KEY_CHAIN
|
|
|
|
# Unlock the keychain
|
|
security unlock-keychain -p travis $KEY_CHAIN
|
|
|
|
security import $CERTIFICATE_P12 -k $KEY_CHAIN -P $MACOS_DEVID_CERTIFICATE_PASSWORD -T /usr/bin/codesign;
|
|
|
|
security set-key-partition-list -S apple-tool:,apple: -s -k travis $KEY_CHAIN
|
|
|
|
# remove certs
|
|
rm -fr *.p12
|