diff options
author | isXander <xander@isxander.dev> | 2024-04-23 18:27:48 +0100 |
---|---|---|
committer | isXander <xander@isxander.dev> | 2024-04-23 18:27:48 +0100 |
commit | 525a145e80475892c2cd34d882f636360971224c (patch) | |
tree | 5dbd7e4e5be68ea99872605e1fa77c60e8dad4f5 /build.gradle.kts | |
parent | e1d95961881b72f40d8c12d2cdcaeee4d9e6b31b (diff) | |
download | YetAnotherConfigLib-525a145e80475892c2cd34d882f636360971224c.tar.gz YetAnotherConfigLib-525a145e80475892c2cd34d882f636360971224c.tar.bz2 YetAnotherConfigLib-525a145e80475892c2cd34d882f636360971224c.zip |
Fix publishing
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index e4de603..e9271ec 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -259,10 +259,10 @@ publishMods { isBeta -> BETA else -> STABLE }) - modLoaders.add("fabric") + modLoaders.add(loader) // modrinth and curseforge use different formats for snapshots. this can be expressed globally - val stableMCVersions = listOf(stonecutter.current.project) + val stableMCVersions = listOf(stonecutter.current.version) val modrinthId: String by project if (modrinthId.isNotBlank() && hasProperty("modrinth.token")) { |