updated to push to maven central #1
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
name: Java/maven CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- testm | |
# tags: | |
# - 'v*.*.*' # Adjust the tag pattern to match your versioning scheme | |
# release: | |
# types: [created] # Trigger the workflow when a release is created | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Decrypt and Import GPG Key | |
run: | | |
gpgconf --kill gpg-agent || true | |
gpgconf --launch gpg-agent || true | |
echo "$GPG_PRIVATE_KEY" | gpg --batch --no-tty --import | |
env: | |
GPG_PRIVATE_KEY: '${{ secrets.GPG_PRIVATE_KEY }}' | |
GPG_PASSPHRASE: '${{ secrets.GPG_PASSPHRASE }}' | |
- name: Publish to Maven Central | |
env: | |
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}' | |
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}' | |
GPG_PASSPHRASE: '${{ secrets.GPG_PASSPHRASE }}' | |
run: mvn -B clean deploy --settings .github/workflows/mvn-settings.xml |