Skip to content

Commit b51710f

Browse files
committed
a
1 parent 061f08c commit b51710f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
signingkey: ${{secrets.SIGNING_KEY}}
2525
signingkeyid: ${{secrets.SIGNING_KEYID}}
2626
signingpassword: ${{secrets.SIGNING_PASSWORD}}
27-
sonatypepassword: ${{secrets.SONATYPE_PASSWORD}}
28-
sonatypeusername: ${{secrets.SONATYPE_USERNAME}}
27+
sonatypePassword: ${{secrets.SONATYPE_PASSWORD}}
28+
sonatypeUsername: ${{secrets.SONATYPE_USERNAME}}
2929
- name: Zip create
3030
run: |
3131
cd build/libs

common/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ publishing {
6464
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots"
6565
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
6666
credentials {
67-
username = System.getenv('sonatypeusername')
68-
password = System.getenv('sonatypepassword')
67+
username = System.getenv('sonatypeUsername')
68+
password = System.getenv('sonatypePassword')
6969
}
7070
}
7171
}

0 commit comments

Comments
 (0)