Echo cert to file before decode

This commit is contained in:
Marquis Kurt 2019-09-25 18:05:45 -04:00
parent 70e9456d59
commit 318e616a51
No known key found for this signature in database
GPG Key ID: 725636D259F5402D
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@ jobs:
node-version: 10.x
- name: Run pre-build setup
run: |
base64 --decode "$(ascCertificates)" > Certificates.p12
echo "$(ascCertificates)" > certs.b64
base64 --decode certs.b64 > Certificates.p12
security add-generic-password -a "appleseed@marquiskurt.net" -w "$(ascPassword)" -s "AC_PASSWORD"
security import Certificates.p12 -P "$(ascCertsPassword)" -k /Library/Keychains/System.keychain
env: