Disable code signing for Jitpack (#813)

* Disable code signing on release

I'm doing the same thing in SkinsRestorer: b7baa862d8/buildSrc/src/main/kotlin/sr.base-logic.gradle.kts (L87-L89)

* Update buildSrc/src/main/kotlin/mcprotocollib.base-conventions.gradle.kts

Co-authored-by: Kas-tle <26531652+Kas-tle@users.noreply.github.com>

---------

Co-authored-by: Kas-tle <26531652+Kas-tle@users.noreply.github.com>
This commit is contained in:
Alex 2024-06-02 10:16:19 +02:00 committed by GitHub
parent a724a8fdb4
commit b9f5dd6973
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,6 +18,11 @@ indra {
} }
} }
if (System.getenv("JITPACK") == "true") {
tasks.withType<Sign>().configureEach {
onlyIf { false }
}
}
lombok { lombok {
version = libs.versions.lombok.version.get() version = libs.versions.lombok.version.get()
} }