Browse Source

Github actions support

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

19
build.gradle

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

Loading…
Cancel
Save