Skip to content

Merge pull request #556 from dbmdz/ci-ubuntu-update #768

Merge pull request #556 from dbmdz/ci-ubuntu-update

Merge pull request #556 from dbmdz/ci-ubuntu-update #768

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ published ]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
java: [17]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
check-latest: true
distribution: temurin
java-version: ${{ matrix.java }}
- uses: actions/cache@v3
env:
cache-name: cache-maven-artifacts
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Build with Maven
run: mvn -B -Pintegration verify
services:
redis:
image: redis
ports:
- 6379:6379
publish:
if: (github.event_name == 'push' && contains(github.ref, 'main')) || github.event_name == 'release'
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
env:
cache-name: cache-maven-artifacts
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Install XML utils
run: sudo apt update && sudo apt install libxml2-utils
- name: Set project version
run: echo "PROJECT_VERSION=$(xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' pom.xml)" >> $GITHUB_ENV
# Publish snapshot
- name: Set up JDK 17 for publishing a snapshot
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
uses: actions/setup-java@v3
with:
check-latest: true
distribution: temurin
java-version: 17
server-id: ossrh-snapshots
server-password: MAVEN_PASSWORD
server-username: MAVEN_USERNAME
- name: Publish snapshot to the Maven Central Repository
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
run: mvn -B deploy -P maven-central
env:
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
# Publish release
- name: Set up JDK 17 for publishing a release
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
uses: actions/setup-java@v3
with:
gpg-passphrase: MAVEN_GPG_PASSPHRASE
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
check-latest: true
distribution: temurin
java-version: 17
server-id: ossrh
server-password: MAVEN_PASSWORD
server-username: MAVEN_USERNAME
- name: Publish release to the Maven Central Repository
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
run: mvn -B deploy -Psign,maven-central
env:
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}