Skip to content

updated yaml file (#8) #3

updated yaml file (#8)

updated yaml file (#8) #3

name: Java/maven CI/CD Pipeline
on:
push:
branches:
- main
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