Making release: set version as 0.11 #12
Workflow file for this run
This file contains hidden or 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: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: {} | |
jobs: | |
build-test-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Get version from POM | |
id: version | |
if: github.event_name == 'push' | |
run: | | |
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
echo "is_snapshot=$(echo $VERSION | grep -q SNAPSHOT && echo true || echo false)" >>$GITHUB_OUTPUT | |
- name: Configure Maven settings | |
if: github.event_name == 'push' | |
uses: s4u/maven-settings-action@v3.0.0 | |
with: | |
servers: | | |
[{ | |
"id": "central", | |
"username": "${{ secrets.CENTRAL_SONATYPE_USERNAME }}", | |
"password": "${{ secrets.CENTRAL_SONATYPE_PASSWORD }}" | |
}] | |
- name: Import GPG key for SNAPSHOT | |
if: github.event_name == 'push' && steps.version.outputs.is_snapshot == 'true' | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_TEST_PRIV_KEY }} | |
passphrase: ${{ secrets.GPG_TEST_PASSPHRASE }} | |
- name: Import GPG key for release | |
if: github.event_name == 'push' && steps.version.outputs.is_snapshot != 'true' && startsWith(github.ref, 'refs/tags/') | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_RELEASE_PRIV_KEY }} | |
passphrase: ${{ secrets.GPG_RELEASE_PASSPHRASE }} | |
- name: Download dependencies | |
run: mvn --batch-mode dependency:go-offline | |
- name: Build | |
run: mvn --batch-mode clean compile | |
- name: Test | |
run: mvn --batch-mode test | |
- name: Build javadoc | |
run: mvn --batch-mode javadoc:javadoc | |
- name: Package without gpg | |
if: github.event_name != 'push' | |
run: mvn --batch-mode package -Dmaven.test.skip=true -Dgpg.skip=true | |
# Both "Deploy..." steps are calling the same, but separated to have clearer logs | |
- name: Deploy SNAPSHOT | |
if: github.event_name == 'push' && steps.version.outputs.is_snapshot == 'true' | |
run: mvn --batch-mode deploy | |
- name: Deploy release | |
if: github.event_name == 'push' && steps.version.outputs.is_snapshot != 'true' && startsWith(github.ref, 'refs/tags/') | |
run: mvn --batch-mode deploy | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: java-runtime-${{ github.event_name }}-${{ github.event.number || github.sha }} | |
path: target/*.jar | |
retention-days: 30 | |
- name: Upload test results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test-results-${{ github.event_name }}-${{ github.event.number || github.sha }} | |
path: target/surefire-reports/ | |
retention-days: 7 |