https://kotlinlang.org logo
Title
t

tad

03/12/2021, 2:38 AM
How do I tell the compose-desktop plugin to use a password for the macOS keychain?
j

jim

03/12/2021, 4:43 AM
This is for signing the native binaries or for something else? Does it not just prompt you for a password/authorization to use the keychain?
t

tad

03/12/2021, 4:45 AM
This is for
packageDmg
. I am attempting to run it in GitHub Actions with a third-party action to import our Developer ID cert into a keychain, but it also generates a password for the keychain.
If it is possible to have a password-less keychain I can look into writing a script to import the certificate.
I solved this, I had to tell the plugin the path to the
.keychain-db
file. Which is kind of strange as all of the macOS tools operate on the keychain name and not the path or extension. The keychain was unlocked all along.