Mark publish tasks as not compatible with config cache for now

This commit is contained in:
Nassim Jahnke 2024-12-29 13:48:39 +01:00
parent 4265866c93
commit a1a71a160a
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

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