build(deps): bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.5 to 3.2.7 #401
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: CI | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
release: | |
types: [ published ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
check-latest: true | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Set up cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-maven-artifacts | |
with: | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
path: ~/.m2/repository | |
- name: Check Java codestyle | |
run: mvn com.spotify.fmt:fmt-maven-plugin:check | |
- name: Build with Maven | |
run: mvn -B -U clean verify | |
strategy: | |
matrix: | |
java: [11, 17] | |
publish: | |
if: (github.event_name == 'push' && (contains(github.ref, 'main') || startsWith(github.ref, 'release/'))) || github.event_name == 'release' | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-maven-artifacts | |
with: | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
path: ~/.m2/repository | |
- name: Install XML utils | |
run: sudo apt update && sudo apt install libxml2-utils | |
- name: Extract 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 11 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: 11 | |
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 -DskipTests | |
env: | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
# Publish release | |
- name: Set up JDK 11 for publishing a release | |
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT') | |
uses: actions/setup-java@v3 | |
with: | |
check-latest: true | |
distribution: temurin | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
java-version: 11 | |
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 -DskipTests -Pdeploy | |
env: | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} |