Skip to content

Commit

Permalink
add publishing Combo task for each project
Browse files Browse the repository at this point in the history
  • Loading branch information
JT122406 committed Dec 3, 2023
1 parent f3343fe commit a3243ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ tasks {
mainFile.changelog = "Test changelog"
mainFile.addRelations(Constants.RELATION_REQUIRED, "architectury-api", "botarium", "cobblemon", "fabric-api")
}

create("Fabric-publishCurseForgeAndModrinth") {
dependsOn(getByName("publishCurseForge"), getByName("publishModrinth"))
}
}

components {
Expand Down
4 changes: 4 additions & 0 deletions forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ tasks {
mainFile.changelog = "Test changelog"
mainFile.addRelations(Constants.RELATION_REQUIRED, "architectury-api", "botarium", "cobblemon")
}

create("Forge-publishCurseForgeAndModrinth") {
dependsOn(getByName("publishCurseForge"), getByName("publishModrinth"))
}
}

components {
Expand Down

0 comments on commit a3243ac

Please sign in to comment.