Skip to content

Commit

Permalink
fix: versioning changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamalam360 committed Dec 30, 2023
1 parent 260945c commit 261474f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ if (System.getenv("GITHUB_TOKEN") != null) {
token(System.getenv("GITHUB_TOKEN"))
owner("JamCoreModding")
repo("jamlib")
tagName(project.version)
releaseName("V${project.version} [${minecraft_version}]")
tagName("${project.version}")
releaseName("V${project.version}")
body(project.rootProject.file("CHANGELOG.md").text)
draft(false)

Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ architectury {
}

base {
archivesName = "jamlib-fabric-${minecraft_version}"
archivesName = "jamlib-fabric"
}

loom {
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ architectury {
}

base {
archivesName = "jamlib-forge-${minecraft_version}"
archivesName = "jamlib-forge"
}

loom {
Expand Down
2 changes: 1 addition & 1 deletion neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ architectury {
}

base {
archivesName = "jamlib-neoforge-${minecraft_version}"
archivesName = "jamlib-neoforge"
}

loom {
Expand Down
2 changes: 1 addition & 1 deletion quilt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ architectury {
}

base {
archivesName = "jamlib-quilt-${minecraft_version}"
archivesName = "jamlib-quilt"
}

loom {
Expand Down

0 comments on commit 261474f

Please sign in to comment.