We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8690cc8 commit be6e88fCopy full SHA for be6e88f
build.gradle
@@ -127,6 +127,9 @@ subprojects {
127
}
128
129
signing {
130
+ // Skip signing if publishing to mavenLocal and credentials are not available
131
+ // so that jitpack works correctly
132
+ required { !gradle.taskGraph.hasTask("publishToMavenLocal") }
133
sign publishing.publications.mavenJava
134
135
jitpack.yml
@@ -1,2 +1,2 @@
1
install:
2
- - ./gradlew publishToMavenLocal --info --no-daemon
+ - ./gradlew build publishToMavenLocal --info --no-daemon
0 commit comments