We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry to abuse issues to ask a question, but is there a way to disable signing for jitpack?
currently I have to add a check, but it feels not like the intended way to do it. any suggestions? e.g. https://github.com/kibotu/AndroidResourceExtensions/blob/master/AndroidResourceExtensions/build.gradle#L77-L99
if (!System.getenv("JITPACK") == "true") { apply plugin: 'com.vanniktech.maven.publish' mavenPublishing { publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost.CENTRAL_PORTAL, true) signAllPublications() } } if (System.getenv("JITPACK") == "true") { apply plugin: 'maven-publish' afterEvaluate { publishing { publications { release(MavenPublication) { from components.release groupId = GROUP artifactId = POM_ARTIFACT_ID version = version } } } } }
The text was updated successfully, but these errors were encountered:
Is it specifically signing that fails on jitpack?
Sorry, something went wrong.
Yes, mainly because I don't have a way to provide credentials to jitpack
No branches or pull requests
Sorry to abuse issues to ask a question, but is there a way to disable signing for jitpack?
currently I have to add a check, but it feels not like the intended way to do it. any suggestions? e.g. https://github.com/kibotu/AndroidResourceExtensions/blob/master/AndroidResourceExtensions/build.gradle#L77-L99
The text was updated successfully, but these errors were encountered: