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 { 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 = deployRepoUrl
credentials { credentials {
username = System.getProperty("deployRepoUsername") username = deployRepoUsername
password = System.getProperty("deployRepoPassword") password = deployRepoPassword
} }
} }
} }

Loading…
Cancel
Save