We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be8db46 commit edb3002Copy full SHA for edb3002
1 file changed
.github/workflows/maven-publish.yml
@@ -18,10 +18,11 @@ jobs:
18
java-version: '17'
19
distribution: 'temurin'
20
server-id: central
21
- server-username: MAVEN_USERNAME
22
- server-password: MAVEN_PASSWORD
+ server-username: ${{ secrets.MAVEN_USERNAME }}
+ server-password: ${{ secrets.MAVEN_PASSWORD }}
23
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
24
- gpg-passphrase: MAVEN_GPG_PASSPHRASE
+ gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
25
+
26
27
- name: Publish to Maven Central
28
run: mvn clean deploy -DperformRelease=true
0 commit comments