File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
13
13
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 }}
16
16
PGP_PRIVATE_KEY : ${{ secrets.PGP_PRIVATE_KEY }}
17
17
PGP_KEY_PASSPHRASE : ${{ secrets.PGP_KEY_PASSPHRASE}}
18
18
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ subprojects {
48
48
repositories {
49
49
maven {
50
50
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 " )
53
53
}
54
54
url = project. properties[" mavenDeployUrl" ]
55
55
}
You can’t perform that action at this time.
0 commit comments