We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c822e63 commit 1d28064Copy full SHA for 1d28064
.github/workflows/release-build.yml
@@ -23,5 +23,5 @@ jobs:
23
run: ./gradlew publish -x check
24
env:
25
NEXUS_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
26
- NEXUS_USER: ""
+ NEXUS_USER: ${{ secrets.GITHUB_ACTOR }}
27
build.gradle.kts
@@ -39,10 +39,9 @@ subprojects {
39
}
40
41
42
-
43
repositories {
44
maven {
45
- uri("https://maven.pkg.github.com/pledger-io/central")
+ url = uri("https://maven.pkg.github.com/pledger-io/central")
46
credentials {
47
username = System.getenv("NEXUS_USER")
48
password = System.getenv("NEXUS_PASSWORD")
0 commit comments