Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1 (#… #221

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1 (#…

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1 (#… #221

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
PUBLISH_ARTIFACTS: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
cache: 'maven'
- name: Build with JDK 11
run: mvn -B install --no-transfer-progress -DskipTests
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8
- name: Test with JDK 8
run: mvn -v && mvn -B test
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Test with JDK 11
run: mvn -v && mvn -B test
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Test with JDK 17
run: mvn -v && mvn -B test
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
- name: Test with JDK 21
run: mvn -v && mvn -B test
- name: Set up settings.xml for Sonatype
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Publish SNAPSHOT version to Sonatype (we can skip tests, since we only deploy, if the build workflow succeeded)
run: mvn -v && mvn -B -P requireSnapshot --no-transfer-progress -DskipTests deploy --settings build/settings-sonatype.xml
if: env.PUBLISH_ARTIFACTS == 'true'
env:
SONATYPE_USERNAME: theigl
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD_TH }}