Skip to content

Commit

Permalink
this fucking shit
Browse files Browse the repository at this point in the history
  • Loading branch information
kel-cu committed Sep 14, 2024
1 parent 10a867e commit 70278d9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ publishing {
}
}
}

tasks.register('modrinthAll') {
subprojects {
dependsOn project.tasks.named('modrinth').get()
}
}
tasks.register('buildAndGather') {
subprojects {
dependsOn project.tasks.named('build').get()
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
> This version has been republished due to plugin settings for publishing
- Added buildAndShow() (for multiversion)
- Optimize code
- Added player.debug.direction(_symbol) #10
Expand Down
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ modrinth {
projectId = "alinlib" // This can be the project ID or the slug. Either will work!
setVersion(version)
// You don't need to set this manually. Will fail if Modrinth has this version already
changelog = new File("../../changelog.md").text;
changelog = file("../../changelog.md").text
versionType = rootProject.version_type // This is the default -- can also be `beta` or `alpha`
uploadFile = jar // With Loom, this MUST be set to `remapJar` instead of `jar`!
uploadFile = remapJar // With Loom, this MUST be set to `remapJar` instead of `jar`!
project.modrinth_versions.split(", ").each {
gameVersions.add it
}
Expand Down

0 comments on commit 70278d9

Please sign in to comment.