Skip to content

Commit

Permalink
Publish Android native targets
Browse files Browse the repository at this point in the history
The removed line was meant to filter out the testing targets, since the Android native targets don't have tests, but it was accidentally added to the ciPublish task. Does not need to be added to the ciTest task since the `KotlinTargetWithTests` filter covers it.
  • Loading branch information
BenWoodworth committed Nov 6, 2023
1 parent 4930dc7 commit ef59a06
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ tasks.create("ciTest") {
tasks.create("ciPublish") {
ciHostTargets
.map { it.name.uppercaseFirstChar() }
.filter { !it.startsWith("Android") }
.map { if (it == "Metadata") "KotlinMultiplatform" else it }
.map { target -> "publish${target}PublicationToMavenRepository" }
.forEach { publishTarget ->
Expand Down

0 comments on commit ef59a06

Please sign in to comment.