Ayfri
04/21/2022, 4:12 PMpublishToSonatype
, here's my workflow file and here's the result
I'm just trying to publish all my modules to sonatype at once using a github action and it's very very hard.
When using ./gradlew tasks
the task is therejendrik
04/22/2022, 3:55 PM:publishToSonatype
locally with the :
in front? I presume that would also fail.
I think the problem is here:
https://github.com/Ayfri/PIXI-Kotlin/blob/master/build.gradle.kts#L39
Not sure if you need that finalizedBy
part. But if, it should probably be something like ${it.path}:publishToSonatype
for each subproject (the task only exists in the subprojects I think).
Since you already have things setup in publish-conventions.gradle.kts
you can maybe remove the finalizedBy part.Ayfri
04/22/2022, 8:47 PM:publishToSonatype
in my subprojectsAyfri
04/26/2022, 4:49 AMAyfri
04/29/2022, 3:25 PM