We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93330cb commit 570296bCopy full SHA for 570296b
build.gradle
@@ -33,7 +33,7 @@ abstract class TeaConDumpPathToGitHub extends DefaultTask {
33
outputFile << newLine << "artifact_name=${theFile.getName()}"
34
outputFile << newLine << "artifact_publish_name=${publishName.get()}"
35
outputFile << newLine << "artifact_path=${theFile.absolutePath}"
36
- outputFile << newLine << "artifact_git_tag=MC${minecraftVersion.get()}-${modVersion.get()}"
+ outputFile << newLine << "artifact_git_tag=MC${String.join(".", minecraftVersion.get().split("\\.")[1..2])}-${modVersion.get()}"
37
}
38
39
0 commit comments