You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/03/04 11:41:13 UTC

[maven-gh-actions-shared] branch v2 updated: Exclude IT tests from site upload

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

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


The following commit(s) were added to refs/heads/v2 by this push:
     new d781c10  Exclude IT tests from site upload
d781c10 is described below

commit d781c1074127b486ffcfa00d507eaa1ba0aa3190
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Fri Mar 4 12:39:25 2022 +0100

    Exclude IT tests from site upload
---
 .github/workflows/maven-verify.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml
index dc99077..9b31b09 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -173,7 +173,9 @@ jobs:
         uses: actions/upload-artifact@v3
         with:
           name: ${{ github.run_number }}-site-${{ inputs.ff-os }}-${{ inputs.ff-jdk }}-${{ inputs.ff-jdk-distribution }}
-          path: '**/target/site/**'
+          path: |
+            **/target/site/**
+            !**/target/it/**
 
       - name: Upload artifact on failure
         uses: actions/upload-artifact@v3