Problem:
On remote computer like Codemagic CI/CD for Windows, terminal ask user input to proceed,
Do you want to install the certificate: "navoki_notes.pfx" ? (y/N)
and install-certificate is not passed in command line. SignTool command is also added signtool_options but still ask user input in terminal
Problem: On remote computer like Codemagic CI/CD for Windows, terminal ask user input to proceed,
Do you want to install the certificate: "navoki_notes.pfx" ? (y/N)
and
install-certificate
is not passed in command line. SignTool command is also addedsigntool_options
but still ask user input in terminalSame configuration works on local PC.
Solution Either variable is accepted to use or skip install-certificate to make build and release on auto-pilot mode
Change
installCert = _args['install-certificate'] != 'false' && yaml['install_certificate'] != 'false';
TOinstallCert = _args['install-certificate'] != 'false' || yaml['install_certificate'] != 'false';