build(Needs bump): Add missing repository to publish packages to

This commit is contained in:
oSumAtrIX 2024-02-14 01:12:54 +01:00
parent e33026c538
commit 55746ed705
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 11 additions and 0 deletions

View File

@ -62,6 +62,17 @@ kotlin {
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
create<MavenPublication>("revanced-patcher-publication") {
from(components["java"])