From 92632fa2a38617ac270e1f398e77d54e2051bf42 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Thu, 17 Feb 2022 19:09:26 +0100 Subject: [PATCH] #661: JUnit test results take 4 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a842a5d8..82a1d2ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,10 +26,10 @@ jobs: if: ${{ !cancelled() }} with: report_paths: "**/target/surefire-reports/TEST*.xml" - check_name: OpenJDK ${{ matrix.java }} on ${{ matrix.os }} + check_name: Unit Test Results for OpenJDK ${{ matrix.java }} on ${{ matrix.os }} test_oracle: - name: Test Oracle JDK 8 KCMS=${{ matrix.kcms }} + name: Test Oracle JDK 8 with KCMS=${{ matrix.kcms }} runs-on: ubuntu-latest strategy: matrix: @@ -58,7 +58,7 @@ jobs: if: ${{ !cancelled() }} with: report_paths: "**/target/surefire-reports/TEST*.xml" - check_name: Oracle JDK 8 KCMS=${{ matrix.kcms }} + check_name: Unit Test Results for Oracle JDK 8 with KCMS=${{ matrix.kcms }} release: name: Deploy @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up Apache Maven Central + - name: Set up Maven Central uses: actions/setup-java@v2 with: # running setup-java again overwrites the settings.xml distribution: 'temurin' @@ -81,7 +81,7 @@ jobs: - name: Get Project Version run: | echo "PROJECT_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV - - name: Publish to Apache Maven Central + - name: Publish to Maven Central if: ${{ endsWith(env.PROJECT_VERSION, '-SNAPSHOT') }} run: mvn deploy -P release -DskipTests env: