Skip to content

Commit

Permalink
feat: rename environment secrets in publish workflow
Browse files Browse the repository at this point in the history
- to correspond with what is needed - instead of username and password - use username and user access token as a password
  • Loading branch information
martinalbert committed Jul 24, 2024
1 parent cd3c365 commit e6b75ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
cache: 'maven'
cache-dependency-path: ./pom.xml
server-id: ossrh # This id should match with the id in your pom.xml or settings.xml
server-username: ${{ secrets.OSSRH_USER_TOKEN }}
server-password: ${{ secrets.OSSRH_PWD_TOKEN }}
server-username: ${{ secrets.OSSRH_USERNAME }}
server-password: ${{ secrets.OSSRH_TOKEN }}
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: ${{ secrets.GPG_PWD }}

Expand Down

0 comments on commit e6b75ef

Please sign in to comment.