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 78408bc commit 55bdfefCopy full SHA for 55bdfef
1 file changed
.github/workflows/publish.yml
@@ -13,8 +13,8 @@ jobs:
13
name: Publish to Maven Central
14
runs-on: ubuntu-latest
15
env:
16
- CENTRAL_USERNAME: ${{ secrets.CENTRAL_USERNAME }}
17
- CENTRAL_PASSWORD: ${{ secrets.CENTRAL_PASSWORD }}
+ CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
+ CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
18
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
19
steps:
20
- name: Checkout
@@ -27,8 +27,8 @@ jobs:
27
java-version: 25
28
cache: maven
29
server-id: central
30
- server-username: CENTRAL_USERNAME
31
- server-password: CENTRAL_PASSWORD
+ server-username: CENTRAL_TOKEN_USERNAME
+ server-password: CENTRAL_TOKEN_PASSWORD
32
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
33
gpg-passphrase: GPG_PASSPHRASE
34
0 commit comments