You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
589 B
16 lines
589 B
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
security create-keychain -p "" build.keychain
|
|
security list-keychains -s build.keychain
|
|
security default-keychain -s build.keychain
|
|
security unlock-keychain -p "" build.keychain
|
|
security set-keychain-settings
|
|
echo $SIGNING_CERTIFICATE_P12_DATA | base64 --decode > signingCertificate.p12
|
|
security import signingCertificate.p12 \
|
|
-f pkcs12 \
|
|
-k build.keychain \
|
|
-P $SIGNING_CERTIFICATE_PASSWORD \
|
|
-T /usr/bin/codesign
|
|
security set-key-partition-list -S apple-tool:,apple: -s -k "" build.keychain
|