Browse Source

Github actions support

Signed-off-by: weisj <weisj@arcor.de>
pull/15/head
weisj 5 years ago
parent
commit
8aefcfdb17
  1. 19
      build.gradle

19
build.gradle

@ -39,6 +39,10 @@ artifacts {
}
signing {
// def signingKeyId = findProperty("signingKeyId")
// def signingKey = findProperty("signingKey")
// def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKey, signingPassword)
sign configurations.archives
}
@ -81,21 +85,12 @@ publishing {
}
}
}
// repositories {
// maven {
// url deployRepoUrl
// credentials {
// username = deployRepoUsername
// password = deployRepoPassword
// }
// }
// }
repositories {
maven {
url System.getProperty("deployRepoUrl")
url = deployRepoUrl
credentials {
username = System.getProperty("deployRepoUsername")
password = System.getProperty("deployRepoPassword")
username = deployRepoUsername
password = deployRepoPassword
}
}
}

Loading…
Cancel
Save