Skip to content

Commit

Permalink
fix: artifact incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed May 30, 2023
1 parent 7304c62 commit 58fbcd1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.3.7
## 2.3.8

### Added

Expand Down
6 changes: 3 additions & 3 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ publishing {
}

repositories {
if (ENV.SAPS_TOKEN) {
if (ENV.NANITE_TOKEN) {
maven {
url MAVEN_URL
url "https://maven.nanite.dev/releases"
credentials {
username = "nanite"
password = "${ENV.SAPS_TOKEN}"
password = "${ENV.NANITE_TOKEN}"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ if (ENV.CURSE_TOKEN) {
releaseType = "beta"
addGameVersion "Fabric"
addGameVersion "${minecraft_version}"
mainArtifact(jar)
mainArtifact(remapJar.archiveFile)
changelog = file("../CHANGELOG.md")
changelogType = 'markdown'
}
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ if (ENV.CURSE_TOKEN) {
releaseType = "release"
addGameVersion "Forge"
addGameVersion "${minecraft_version}"
mainArtifact(jar)
mainArtifact(remapJar.archiveFile)
changelog = file("../CHANGELOG.md")
changelogType = 'markdown'
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ minecraft_version=1.19.2
enabled_platforms=fabric,forge

archives_base_name=ToolKit
mod_version=2.3.7
mod_version=2.3.8
maven_group=com.sunekaer.mods

architectury_version=6.5.77
Expand Down

0 comments on commit 58fbcd1

Please sign in to comment.