Skip to content

Commit

Permalink
Update Maven Central credentials in release workflow
Browse files Browse the repository at this point in the history
Updated the environment variables for Maven Central deployment to use the new token-based credentials. This change enhances the security and management of our deployment process by aligning with the latest credential practices.
  • Loading branch information
dlemmermann committed Nov 7, 2024
1 parent a0bb6f2 commit cf65156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
- name: Release to Maven Central
env:
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_PASSWORD }}
MAVEN_USERNAME: ${{ secrets.SONATYPE_WITH_TOKEN_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_WITH_TOKEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
export GPG_TTY=$(tty)
Expand Down

0 comments on commit cf65156

Please sign in to comment.