.github/workflows/publish.yml #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Apache Maven Central | |
uses: actions/setup-java@v4 | |
with: # running setup-java again overwrites the settings.xml | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml | |
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 | |
run: | | |
git config user.name "ayoukhananov" | |
git config user.email "[email protected]" | |
GPG_TTY=$(tty) mvn --batch-mode release:prepare release:perform -DskipSing=false | |
env: | |
MAVEN_USERNAME: ${{ secrets.OB_MAVEN_USERNAME }} | |
MAVEN_CENTRAL_TOKEN: ${{ secrets.OB_MAVEN_CENTRAL_TOKEN }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.OB_MAVEN_GPG_PASSPHRASE }} |