Skip to content

Commit

Permalink
add quilt as supported loader
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Aug 12, 2022
1 parent 6302a48 commit 7c1ce58
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,16 @@ task github(dependsOn: build) {

import com.modrinth.minotaur.dependencies.*
if (ENV.MODRINTH_TOKEN) modrinth {
token = ENV.MODRINTH_TOKEN
projectId = project.modrinth_id
token = ENV.MODRINTH_TOKEN
projectId = project.modrinth_id
versionNumber = version
versionName = VER_NAME
versionType = project.release_type
changelog = CHANGELOG
uploadFile = remapJar
gameVersions = SUPPORTED_VERSIONS
dependencies = [
versionName = VER_NAME
versionType = project.release_type
changelog = CHANGELOG
uploadFile = remapJar
gameVersions = SUPPORTED_VERSIONS
loaders = [ "fabric", "quilt" ]
dependencies = [
new ModDependency("fabric-api", DependencyType.REQUIRED)
]
}
Expand All @@ -160,11 +161,12 @@ if (ENV.CURSEFORGE_API_KEY) curseforge {

project {
id = project.curseforge_id
addGameVersion 'Fabric'

addGameVersion 'Fabric'
addGameVersion 'Quilt'
for (final def cf_ver in SUPPORTED_VERSIONS) addGameVersion cf_ver

changelog = CHANGELOG
changelog = CHANGELOG
releaseType = project.release_type

mainArtifact(remapJar) {
Expand Down

0 comments on commit 7c1ce58

Please sign in to comment.