File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
actions/branch-out-upload Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " branch-out-upload " : patch
3+ ---
4+
5+ fix: bad exit on branch-out-upload
Original file line number Diff line number Diff line change @@ -69,13 +69,12 @@ runs:
6969 echo "Go test suite detected, will run JUnit Enhancer."
7070 echo "run-enhancer=true" | tee -a "$GITHUB_OUTPUT"
7171 echo "junit-path-to-upload=./junit-enhanced.xml" | tee -a "$GITHUB_OUTPUT"
72- exit 1
72+ else
73+ echo "Non-Go test suite detected, skipping JUnit Enhancer."
74+ echo "run-enhancer=false" | tee -a "$GITHUB_OUTPUT"
75+ echo "junit-path-to-upload=$JUNIT_FILE_PATH" | tee -a "$GITHUB_OUTPUT"
7376 fi
7477
75- echo "Non-Go test suite detected, skipping JUnit Enhancer."
76- echo "run-enhancer=false" | tee -a "$GITHUB_OUTPUT"
77- echo "junit-path-to-upload=$JUNIT_FILE_PATH" | tee -a "$GITHUB_OUTPUT"
78-
7978 - name : Install JUnit Enhancer (go)
8079 if : ${{ steps.inputs-ext.outputs.run-enhancer == 'true' }}
8180 shell : bash
You can’t perform that action at this time.
0 commit comments