We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 694d03f commit a2f1075Copy full SHA for a2f1075
build.gradle
@@ -27,6 +27,9 @@ scmVersion {
27
type = "git"
28
// SSH key file is only required when creating a new release and pushing tags to remote repo
29
def sshKeyFile = file("${System.properties['user.home']}/.ssh/id_rsa")
30
+ if (!sshKeyFile.exists()) {
31
+ sshKeyFile = file("${System.properties['user.home']}/.ssh/id_ed25519")
32
+ }
33
if (sshKeyFile.exists()) {
34
customKeyFile = sshKeyFile
35
customKeyPassword = ''
0 commit comments