File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ Add burrow estimation to Mythological Ritual Helper.
2
+ Fix Fairy Souls sometimes throwing an error when clicked.
3
+ Add mod name to log messages.
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' fabric-loom' version ' 1.4-SNAPSHOT'
3
3
id ' maven-publish'
4
+ id " me.modmuss50.mod-publish-plugin" version " 0.5.1"
4
5
}
5
6
6
7
sourceCompatibility = JavaVersion . VERSION_17
@@ -87,4 +88,32 @@ publishing {
87
88
// The repositories here will be used for publishing your artifact, not for
88
89
// retrieving dependencies.
89
90
}
90
- }
91
+ }
92
+
93
+ publishMods {
94
+ file = remapJar. archiveFile
95
+ displayName = " Skyblock Mod ${ mod_version} for ${ minecraft_version} "
96
+ changelog = rootProject. file(" CHANGELOG.md" ). text
97
+ type = STABLE
98
+ modLoaders. add(" fabric" )
99
+
100
+ curseforge {
101
+ projectId = " 658094"
102
+ projectSlug = " skyblockmod" // Required for discord webhook
103
+ accessToken = providers. environmentVariable(" CURSEFORGE_TOKEN" )
104
+ minecraftVersions. add(" 1.20.3" )
105
+ minecraftVersions. add(" 1.20.4" )
106
+ requires(" fabric-api" )
107
+ }
108
+ modrinth {
109
+ projectId = " GTIrlvJk"
110
+ accessToken = providers. environmentVariable(" MODRINTH_TOKEN" )
111
+ minecraftVersions. add(" 1.20.3" )
112
+ minecraftVersions. add(" 1.20.4" )
113
+ }
114
+ github {
115
+ repository = " kevinthegreat1/SkyblockMod-Fabric"
116
+ accessToken = providers. environmentVariable(" GITHUB_TOKEN" )
117
+ commitish = " main"
118
+ }
119
+ }
You can’t perform that action at this time.
0 commit comments