Skip to content

Commit

Permalink
Download and install OS X signing cert on CircleCI
Browse files Browse the repository at this point in the history
Nathan Sobo committed Aug 1, 2016
1 parent da89626 commit 9789109
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -7,6 +7,13 @@ machine:
xcode:
version: 7.3

post:
- |- # this weird literal syntax allows a : on the next line
curl --header 'Accept: application/vnd.github.v3.raw' --output /tmp/mac.p12 $MAC_CODE_SIGNING_CERT_DOWNLOAD_URL
- security unlock-keychain -p circle circle.keychain
- security import /tmp/mac.p12 -P $MAC_CODE_SIGNING_CERT_PASSWORD -k circle.keychain -T /usr/bin/codesign
- security find-identity -p codesigning

general:
artifacts:
- out/atom-mac.zip

0 comments on commit 9789109

Please sign in to comment.