Skip to content

Commit

Permalink
Forgot to also change a few things in mod publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
shurik204 committed Jun 21, 2024
1 parent bce6bba commit b6cefcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,20 @@ tasks {
file = remapJar.get().archiveFile
changelog = providers.environmentVariable("CHANGELOG").getOrElse("No changelog provided")
type = BETA
displayName = "$modName $minecraftVersion $modVersion"
displayName = "$modName $modVersion"
modLoaders.add("fabric")
dryRun = providers.environmentVariable("CI").getOrNull() == null

curseforge {
accessToken = providers.environmentVariable("CURSEFORGE_API_KEY")
projectId = "1032169"
minecraftVersions.add(property("minecraft_version"))
minecraftVersions.add(minecraftVersion)
requires("fabric-api")
}
modrinth {
accessToken = providers.environmentVariable("MODRINTH_TOKEN")
projectId = "rjsZCeTS"
minecraftVersions.add(property("minecraft_version"))
minecraftVersions.add(minecraftVersion)
requires("fabric-api")
}
}
Expand Down

0 comments on commit b6cefcc

Please sign in to comment.