Skip to content

Commit

Permalink
build: update CF publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Jun 16, 2023
1 parent b4e4a07 commit 7b3340b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@ if (ENV.CURSEFORGE_KEY) {
apiKey = ENV.CURSEFORGE_KEY
project {
id = project.curseforge_id_fabric
releaseType = project.curseforge_type
releaseType = ftbPublishing.relType
addGameVersion "Fabric"
addGameVersion "1.19.2"
mainArtifact(remapJar.archivePath)
addGameVersion project.minecraft_version
mainArtifact(remapJar.archiveFile)
relations {
requiredDependency 'architectury-api'
requiredDependency 'fabric-api'
requiredDependency 'ftb-library-fabric'
}
changelog = getGitChangelog
changelog = ENV.CHANGELOG // expected to exist if ENV.CURSEFORGE does
changelogType = 'markdown'
}
}
Expand Down
8 changes: 4 additions & 4 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ if (ENV.CURSEFORGE_KEY) {
apiKey = ENV.CURSEFORGE_KEY
project {
id = project.curseforge_id_forge
releaseType = project.curseforge_type
releaseType = ftbPublishing.relType
addGameVersion "Forge"
addGameVersion "1.19.2"
mainArtifact(remapJar.archivePath)
addGameVersion project.minecraft_version
mainArtifact(remapJar.archiveFile)
relations {
requiredDependency 'architectury-api'
requiredDependency 'ftb-library-forge'
}
changelog = getGitChangelog
changelog = ENV.CHANGELOG // expected to exist if ENV.CURSEFORGE does
changelogType = 'markdown'
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ include("common")
include("fabric")
include("forge")

rootProject.name = 'FTB-Ranks-1.20'
rootProject.name = 'FTB-Ranks-1.20.1'

0 comments on commit 7b3340b

Please sign in to comment.