You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
token =System.getenv("MODRINTH_TOKEN") // This is the default. Remember to have the MODRINTH_TOKEN environment variable set or else this will fail, or set it to whatever you want - just make sure it stays private!
61
74
projectId = project.archivesBaseName // This can be the project ID or the slug. Either will work!
62
75
versionNumber = project.version // You don't need to set this manually. Will fail if Modrinth has this version already
@@ -72,8 +85,31 @@ modrinth {
72
85
required.project "cloth-config"
73
86
}
74
87
syncBodyFrom = rootProject.file("README.md").text
75
-
debugMode =true
88
+
// debugMode = true
89
+
System.out.println("Enter changelog:")
90
+
changelog = br.readLine()
91
+
76
92
}
93
+
//
94
+
//curseforge {
95
+
// apiKey = System.getenv("CURSEFORGE_TOKEN")
96
+
// project {
97
+
// id = '690221'
98
+
// changelog = project.ext.changelog
99
+
// releaseType = project.release_type
100
+
// addGameVersion "1.19.2"
101
+
// addGameVersion "Fabric" //Set Modloader to Fabric
0 commit comments