This repository was archived by the owner on May 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
manager-downloader-plugin Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -48,16 +48,20 @@ publishing {
48
48
name = " GitHubPackages"
49
49
url = uri(" https://maven.pkg.github.com/revanced/revanced-manager-downloader-api" )
50
50
credentials {
51
- username = System .getenv(" GITHUB_ACTOR" )
52
- password = System .getenv(" GITHUB_TOKEN" )
51
+ username = System .getenv(" GITHUB_ACTOR" ) ? : extra[ " gpr.user " ] as String?
52
+ password = System .getenv(" GITHUB_TOKEN" ) ? : extra[ " gpr.key " ] as String?
53
53
}
54
54
}
55
55
}
56
56
57
57
publications {
58
58
create<MavenPublication >(" revanced-manager-downloader-api-publication" ) {
59
- // from(components["main"])
59
+ afterEvaluate {
60
+ from(components[" release" ])
61
+ }
60
62
63
+ groupId = " app.revanced"
64
+ artifactId = " revanced-manager-downloader-api"
61
65
version = project.version.toString()
62
66
63
67
pom {
@@ -81,9 +85,9 @@ publishing {
81
85
scm {
82
86
connection = " scm:git:git://github.com/revanced/revanced-manager-downloader-api.git"
83
87
developerConnection
= " scm:git:[email protected] :revanced/revanced-manager-downloader-api.git"
84
- url = " https://github.com/revanced/revanced-downloader-api"
88
+ url = " https://github.com/revanced/revanced-manager- downloader-api"
85
89
}
86
90
}
87
91
}
88
92
}
89
- }
93
+ }
You can’t perform that action at this time.
0 commit comments