Skip to content

Commit

Permalink
Merge pull request #62 from ayoukhananov/main
Browse files Browse the repository at this point in the history
Use org vars
  • Loading branch information
ayoukhananov authored Aug 5, 2024
2 parents e1cbf9f + 0f26c1d commit 49d39bf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
java-version: '17'
cache: 'maven'
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
server-username: MAVEN_USERNAME # env variable for username in deploy
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in deploy
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
server-username: OB_MAVEN_USERNAME # env variable for username in deploy
server-password: OB_MAVEN_CENTRAL_TOKEN # env variable for token in deploy
gpg-private-key: ${{ secrets.OB_MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase

- name: Publish to Apache Maven Central
Expand All @@ -25,6 +25,6 @@ jobs:
git config user.email "[email protected]"
GPG_TTY=$(tty) mvn --batch-mode release:prepare release:perform -DskipSing=false
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
MAVEN_USERNAME: ${{ secrets.OB_MAVEN_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.OB_MAVEN_CENTRAL_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.OB_MAVEN_GPG_PASSPHRASE }}

0 comments on commit 49d39bf

Please sign in to comment.