mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
build(Needs bump): Add missing repository to publish packages to
This commit is contained in:
parent
e33026c538
commit
55746ed705
1 changed files with 11 additions and 0 deletions
|
@ -62,6 +62,17 @@ kotlin {
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
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 {
|
publications {
|
||||||
create<MavenPublication>("revanced-patcher-publication") {
|
create<MavenPublication>("revanced-patcher-publication") {
|
||||||
from(components["java"])
|
from(components["java"])
|
||||||
|
|
Loading…
Reference in a new issue