File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 42
42
43
43
- name : find maven home
44
44
run : |
45
- maven_home_wrapper =`./mvnw --version | sed -n '2p' | dasel -r yaml 'Maven home'`
46
- echo "MAVEN_HOME=${maven_home_wrapper }" >> $GITHUB_ENV
45
+ maven_home =`./mvnw --version | sed -n '2p' | dasel -r yaml 'Maven home'`
46
+ echo "MAVEN_HOME=${maven_home }" >> $GITHUB_ENV
47
47
cat $GITHUB_ENV
48
48
49
49
- name : actor
@@ -73,14 +73,14 @@ jobs:
73
73
74
74
- name : run tests
75
75
run : |
76
- ./mvnw --no-transfer-progress verify -Dmaven.home=${{ needs.version.outputs.MAVEN_HOME}}
76
+ ./mvnw --no-transfer-progress verify -Dmaven.home=${{ needs.version.outputs.MAVEN_HOME }}
77
77
78
78
- name : archive test results
79
79
uses : actions/upload-artifact@v4
80
80
if : always()
81
81
with :
82
82
name : test-results-${{ matrix.os }}
83
- path : ' */ target'
83
+ path : ' target/** '
84
84
85
85
publish :
86
86
if : contains(needs.version.outputs.BUILD_VERSION, 'SNAPSHOT') && github.actor == 'hauner'
You can’t perform that action at this time.
0 commit comments