Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.10.0 #161
Workflow file for this run
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: build | |
on: | |
push: | |
branches: [ '*' ] | |
tags: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: get tag | |
id: get_tag | |
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | |
- name: maven build | |
env: | |
TAG: ${{ steps.get_tag.outputs.tag }} | |
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }} | |
GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: | | |
if echo "${TAG}" | egrep '^[0-9]+\.[0-9]+\.[0-9]+(-[0-9]+)?$' | |
then | |
# the tag looks like a version number: proceed with release | |
echo ${GPG_SECRET_KEY} | base64 --decode | gpg --import --no-tty --batch --yes | |
echo ${GPG_OWNERTRUST} | base64 --decode | gpg --import-ownertrust --no-tty --batch --yes | |
mvn -ntp versions:set -DnewVersion=${TAG} | |
mvn -ntp -s .github/settings.xml -Prelease deploy | |
else | |
# this is a regular build | |
mvn -ntp install | |
fi |