Mark publish tasks as not compatible with config cache for now

This commit is contained in:
Nassim Jahnke 2024-12-29 13:47:53 +01:00
parent 30df64b4d4
commit 7ea38a9447
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

@ -68,6 +68,9 @@ if (!isRelease || isMainBranch) { // Only publish releases from the main branch
optional.project("viarewind")
}
}
tasks.modrinth {
notCompatibleWithConfigurationCache("")
}
hangarPublish {
publications.register("plugin") {
@ -104,4 +107,7 @@ if (!isRelease || isMainBranch) { // Only publish releases from the main branch
}
}
}
tasks.named("publishPluginPublicationToHangar") {
notCompatibleWithConfigurationCache("")
}
}