Skip to content

Commit

Permalink
fix: use correct names in jars
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Jun 20, 2023
1 parent 33afac9 commit c7ad70d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ remapJar {
injectAccessWidener = true
input.set shadowJar.archiveFile
dependsOn shadowJar
archiveBaseName.set "${rootProject.archives_base_name}-${project.name}"
setArchiveClassifier(null)
}

Expand Down Expand Up @@ -96,7 +97,7 @@ if (ENV.CURSE_TOKEN) {
apiKey = ENV.CURSE_TOKEN
project {
id = rootProject.curseforge_id
releaseType = "release"
releaseType = "beta"
addGameVersion "Fabric"
addGameVersion "Java 17"
addGameVersion "${rootProject.minecraft_version}"
Expand Down
1 change: 1 addition & 0 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ shadowJar {
remapJar {
input.set shadowJar.archiveFile
dependsOn shadowJar
archiveBaseName.set "${rootProject.archives_base_name}-${project.name}"
setArchiveClassifier(null)
}

Expand Down

0 comments on commit c7ad70d

Please sign in to comment.