|
|
@ -307,11 +307,12 @@ jobs: |
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: Install Apple Certificate |
|
|
|
name: Install Apple Certificate |
|
|
|
command: | |
|
|
|
command: | |
|
|
|
echo $APPLE_CERTIFICATE | base64 --decode > apple_certificate.p12 |
|
|
|
echo $APPLE_CERTIFICATE_BASE64 | base64 --decode > /tmp/certificate.p12 |
|
|
|
security create-keychain -p ci-password build.keychain |
|
|
|
security create-keychain -p ci-password build.keychain |
|
|
|
security default-keychain -s build.keychain |
|
|
|
security default-keychain -s build.keychain |
|
|
|
security unlock-keychain -p ci-password build.keychain |
|
|
|
security unlock-keychain -p ci-password build.keychain |
|
|
|
security import apple_certificate.p12 -k build.keychain -T /usr/bin/codesign |
|
|
|
security import /tmp/certificate.p12 -k build.keychain -P $APPLE_CERTIFICATE_PASSWORD -T /usr/bin/codesign |
|
|
|
|
|
|
|
security set-key-partition-list -S apple-tool:,apple: -s -k ci-password build.keychain |
|
|
|
|
|
|
|
|
|
|
|
lint: |
|
|
|
lint: |
|
|
|
docker: |
|
|
|
docker: |
|
|
|