Skip to content

Commit 1d28064

Browse files
committed
Update maven endpoint for publication
1 parent c822e63 commit 1d28064

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
run: ./gradlew publish -x check
2424
env:
2525
NEXUS_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
26-
NEXUS_USER: ""
26+
NEXUS_USER: ${{ secrets.GITHUB_ACTOR }}
2727

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,9 @@ subprojects {
3939
}
4040
}
4141

42-
4342
repositories {
4443
maven {
45-
uri("https://maven.pkg.github.com/pledger-io/central")
44+
url = uri("https://maven.pkg.github.com/pledger-io/central")
4645
credentials {
4746
username = System.getenv("NEXUS_USER")
4847
password = System.getenv("NEXUS_PASSWORD")

0 commit comments

Comments
 (0)