Skip to content

Commit acea408

Browse files
committed
Fix publishing
Signed-off-by: Max Lambrecht <[email protected]>
1 parent 3d71eb4 commit acea408

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release_build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
env:
14-
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
15-
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
14+
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
15+
NEXUS_TOKEN: ${{ secrets.NEXUS_TOKEN }}
1616
PGP_PRIVATE_KEY: ${{ secrets.PGP_PRIVATE_KEY }}
1717
PGP_KEY_PASSPHRASE: ${{ secrets.PGP_KEY_PASSPHRASE}}
1818

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ subprojects {
4848
repositories {
4949
maven {
5050
credentials {
51-
username = project.properties["mavenDeployUser"] ?: System.getenv("MAVEN_USERNAME")
52-
password = project.properties["mavenDeployPassword"] ?: System.getenv("MAVEN_PASSWORD")
51+
username = project.properties["mavenDeployUser"] ?: System.getenv("NEXUS_USERNAME")
52+
password = project.properties["mavenDeployPassword"] ?: System.getenv("NEXUS_TOKEN")
5353
}
5454
url = project.properties["mavenDeployUrl"]
5555
}

0 commit comments

Comments
 (0)