This is an automated email from the ASF dual-hosted git repository.
tibordigana pushed a commit to branch tibor17-gh-workflows-path
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/tibor17-gh-workflows-path by
this push:
new 4561815c3 removed "maven-surefire/" in failure-upload-path
4561815c3 is described below
commit 4561815c3293111ab2e61fdbb95685c781e076b2
Author: tibor17 <[email protected]>
AuthorDate: Mon Nov 10 02:07:58 2025 +0100
removed "maven-surefire/" in failure-upload-path
---
.github/workflows/maven-verify.yml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/maven-verify.yml
b/.github/workflows/maven-verify.yml
index 4dc25d22d..39ff8e202 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -33,12 +33,12 @@ jobs:
verify-goal: 'clean install -nsu -P run-its'
verify-fail-fast: false
failure-upload-path: |
- maven-surefire/**/*
- !maven-surefire/**/*.java
- !maven-surefire/**/*.class
- !maven-surefire/**/*.jar
- !maven-surefire/**/*.tar.gz
- !maven-surefire/**/*.tgz
- !maven-surefire/**/*.zip
+ **/*
+ !**/*.java
+ !**/*.class
+ !**/*.jar
+ !**/*.tar.gz
+ !**/*.tgz
+ !**/*.zip
timeout-minutes: 180
os-matrix: '[ "ubuntu-latest", "windows-2022", "macos-latest" ]'