Reputation: 482
I am building Delphi firemonkey application on Windows for macOS and deploying on macOS. Now to publish the app, I need to codesign it under macOS.
I would like to ssh from Windows machine under macOS as the part of shell script and codesign mac build and publish it.
Upvotes: 2
Views: 198
Reputation: 482
I was able to do this just by moving codesigning certificate from the login keychain to the system keychain. Before that the codesigning script was running only under terminal on macOS, not through ssh session.
Now I can build and publish macOS app on Windows - compile, deploy, codesign and copy to a webserver.
Upvotes: 4