Skip to content

Commit

Permalink
add some links on signing on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey authored Jun 29, 2020
1 parent 17a3bb5 commit 3e57ca8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions signing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ openssl aes-256-cbc -k "${pharo_sign_password}" -in pharo-windows-certificate.p1
The password needed to decrypt them will be stored in an environment variable (secured) on the CI tool (travis or Jenkins).
# How to sign on OS X?
Some links:
- [macOS Code Signing In Depth](https://developer.apple.com/library/archive/technotes/tn2206/_index.html)
- [Distribute outside the Mac App Store (macOS)](https://help.apple.com/xcode/mac/current/#/dev033e997ca)
- [Troubleshooting Failed Signature Verification](https://developer.apple.com/library/archive/technotes/tn2318/_index.html#//apple_ref/doc/uid/DTS40013777-CH1-TNTAG2)
- [security / codesign in Sierra: Keychain ignores access control settings and UI-prompts for permission](https://stackoverflow.com/questions/39868578/security-codesign-in-sierra-keychain-ignores-access-control-settings-and-ui-p/41220140#41220140)
You need to use codesign (shipped with Xcode):
```
codesign -s "${sign_identity}" --keychain "${key_chain}" --force --deep "${app_dir}/Contents/MacOS/Plugins/"*
Expand Down

0 comments on commit 3e57ca8

Please sign in to comment.