added gitea action and updated lys catalog
Some checks failed
CI / build (push) Failing after 7s

This commit is contained in:
2024-03-23 22:02:36 +08:00
parent 369005db17
commit 746351160c
5 changed files with 37 additions and 4 deletions

View File

@@ -55,6 +55,19 @@ publishing {
maven {
url = 'https://mvn.woggioni.net/'
}
maven {
name = "Gitea"
url = uri("https://gitea.woggioni.net/api/packages/woggioni/maven")
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = "token ${System.getenv()["PUBLISHER_TOKEN"]}"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
publications {
maven(MavenPublication) {
@@ -62,4 +75,3 @@ publishing {
}
}
}