You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2021/10/16 14:49:01 UTC

[maven-gh-actions-shared] branch main updated: Fix maven goal in maven_args

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git


The following commit(s) were added to refs/heads/main by this push:
     new 81005c9  Fix maven goal in maven_args
81005c9 is described below

commit 81005c9144958228a8ffc72a37c32d3764f83492
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Sat Oct 16 13:22:28 2021 +0200

    Fix maven goal in maven_args
---
 .github/workflows/maven-verify-with-its.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven-verify-with-its.yml b/.github/workflows/maven-verify-with-its.yml
index b2b5bb9..f00405b 100644
--- a/.github/workflows/maven-verify-with-its.yml
+++ b/.github/workflows/maven-verify-with-its.yml
@@ -23,7 +23,7 @@ on:
       maven_args:
         description: The arguments to pass to Maven when building the code
         required: false
-        default: --errors --batch-mode --show-version -P run-its -D"invoker.streamLogsOnFailures" verify
+        default: --errors --batch-mode --show-version -P run-its -D"invoker.streamLogsOnFailures"
         type: string
 
       os-matrix:
@@ -92,7 +92,7 @@ jobs:
           cache: 'maven'
 
       - name: Build with Maven
-        run: mvn ${{ inputs.maven_args }}
+        run: mvn ${{ inputs.maven_args }} verify
 
       - name: Build Maven Site
         run: mvn ${{ inputs.maven_args }} site