Skip to content

Commit

Permalink
gradle stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
AstralOrdana committed Dec 6, 2023
1 parent 9fa5be1 commit 7a858d7
Show file tree
Hide file tree
Showing 4 changed files with 163 additions and 163 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ allprojects {
// Formats the mod version to include the loader, Minecraft version, and build number (if present)
// example: 1.0.0+fabric-1.18.2-100
String buildNumber = System.getenv("GITHUB_RUN_NUMBER")
version = "${mod_version}+${project.name}-${minecraft_version}" + (buildNumber != null ? "-${buildNumber}" : "")
version = "${mod_version}-${minecraft_version}-${project.name}" + (buildNumber != null ? "-${buildNumber}" : "")

repositories {
// Add repositories to retrieve artifacts from in here.
Expand Down
Loading

0 comments on commit 7a858d7

Please sign in to comment.