Skip to content

Commit

Permalink
Maybe fix version string
Browse files Browse the repository at this point in the history
  • Loading branch information
gigabit101 committed Feb 22, 2024
1 parent 189d11c commit 335c8bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {
apply plugin: "maven-publish"

def ENV = System.getenv()
version = "${minecraft_version}-.${ENV.GITHUB_REF_NAME ?: 9999}"
version = "${ENV.GITHUB_REF_NAME ?: 9999}"
archivesBaseName = rootProject.archives_base_name
group = rootProject.maven_group

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

unifiedPublishing {
project {
displayName = "$rootProject.minecraft_version-.${ENV.GITHUB_REF_NAME} [Forge]"
displayName = "${ENV.GITHUB_REF_NAME} [Forge]"
releaseType = "$rootProject.artifact_type"
changelog = ""
gameVersions = [rootProject.minecraft_version]
Expand Down

0 comments on commit 335c8bf

Please sign in to comment.