I am a fool, add publication.

This commit is contained in:
AngrySoundTech
2024-02-16 10:46:29 -05:00
parent 180cd98d09
commit 52765d5e23

View File

@@ -58,8 +58,6 @@ allprojects {
val githubToken = System.getenv("GITHUB_TOKEN")
repositories {
logger.info("GITHUB_ACTOR: ${githubActor != null}")
logger.info("GITHUB_TOKEN: ${githubToken != null}")
if (githubActor != null && githubToken != null) {
maven {
name = "GitHubPackages"
@@ -71,6 +69,12 @@ allprojects {
}
}
}
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}
tasks.withType<RunServer> {