Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielpaulus/app-signer
https://github.com/danielpaulus/app-signer
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danielpaulus/app-signer
- Owner: danielpaulus
- Created: 2021-12-10T20:05:31.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-04T17:08:16.000Z (almost 3 years ago)
- Last Synced: 2024-06-19T05:58:20.984Z (7 months ago)
- Language: Go
- Size: 4.76 MB
- Stars: 9
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# app-sign
## How it works
### Custom Keychain
app-sign creates a separate keychain every time it is started on the Mac using the `security create-keychain` command.
this is cool for CI use so your profiles don't hang around or need to be installed.### Codesigning
For codesigning it will walk the filetree and execute the `codesign` command for every .app, .appex, .xctest and
.framework directory it can find. Codesign invokations will use the custom keychain that was config'd.## Troubleshooting
### Make sure certificate and profile are not installed in the default keychain on the mac
The Mac machine must not have the profile or certificate already installed. As the standard keychain is in the keychain
search list, it might happen that the standard keychain is used in that case. That can result in a prompt showing up for
the password or unlocking the standard keychain.### Other resources
## Great article about codesigning:
https://www.objc.io/issues/17-security/inside-code-signing/