Skip to content

Commit

Permalink
Fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
juraj-hrivnak committed Apr 30, 2024
1 parent 16afd4d commit 9d21dfd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

group = "teksturepako.pakku"
version = "0.7.5"
version = "0.7.6"

val nativeEnabled = false

Expand Down Expand Up @@ -218,4 +218,11 @@ publishing {
}
}
}
publications.withType<MavenPublication> {
artifactId = if (name == "kotlinMultiplatform") {
artifactId.lowercase()
} else {
"$artifactId-$name".lowercase()
}
}
}

0 comments on commit 9d21dfd

Please sign in to comment.