Hello there, could someone provide guidance on how...
# kotlin-native
a
Hello there, could someone provide guidance on how to publish my Kotlin/Native library to Maven Central? Currently, I use this plugin to publish from my machine, but I can't compile for macOS. Hence, I'm considering going for GH Actions to build for each target. Though, I'm not sure about the publishing process. Should I publish all targets at once, or does Maven Central allow me to publish/update them separately? The build script itself: https://github.com/vyfor/KPresence/blob/master/build.gradle.kts
Can I add another component as long as it's not published?
l
If you look at the publishing section of gradle tasks, you'll see a list of individual publishing tasks. You can publish any individual package by running the associated task.