We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed2389d commit 10ee41aCopy full SHA for 10ee41a
1 file changed
.github/workflows/import_cert.sh
@@ -6,7 +6,9 @@ security default-keychain -s build.keychain
6
security unlock-keychain -p "$MAC_KEY_PASSWORD" build.keychain
7
8
echo "Importing key"
9
-security import <(echo $MAC_KEY | base64 -d) -P "$MAC_KEY_PASSWORD" -f pkcs12
+echo $MAC_KEY | base64 -d > key.cer
10
+security import key.cer -P "$MAC_KEY_PASSWORD" -f pkcs12
11
+rm key.cer
12
13
echo "Trusting Certificate"
14
# Using sudo because overwriting trust settings would require interactive password input
0 commit comments