[maven-release-plugin] prepare release v27 #38
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
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release-* | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
- develop | |
- release-* | |
workflow_dispatch: | |
name: Build and Test Code | |
jobs: | |
build-artifacts: | |
name: Build Java Artifacts | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
with: | |
token: ${{ github.token }} | |
submodules: recursive | |
# ------------------------- | |
# Java | |
# ------------------------- | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f | |
with: | |
maven-version: 3.9.3 | |
- name: Set up JDK 11 (build only) | |
if: ${{ !((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref_name == 'develop') }} | |
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Set up JDK 11 (deploy) | |
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref_name == 'develop' | |
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
cache: 'maven' | |
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml | |
server-username: MAVEN_USERNAME # env variable for username in deploy | |
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in deploy | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | |
# ------------------------- | |
# Maven Build | |
# ------------------------- | |
- name: Build and Test Code, and Test Website | |
id: maven-build-develop | |
run: | | |
mvn -B -e -Prelease -Preporting install site site:stage | |
# ------------------------- | |
# Maven Deploy | |
# ------------------------- | |
- name: Deploy SNAPSHOTs | |
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref_name == 'develop' | |
run: | | |
mvn -B -e -Pgpg -Prelease -Preporting deploy -Dmaven.deploy.skip=releases | |
env: | |
MAVEN_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_PASSWORD }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} |