We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e4d66 commit 3c5de7fCopy full SHA for 3c5de7f
.github/workflows/e2e-test.yaml
@@ -46,7 +46,7 @@ jobs:
46
47
awk '/Results:/, /----/' mvn_output.log > test_error.log || true # true ensures the step doesn't fail if no match is found.
48
ERROR_MSG=$(cat test_error.log | tail +4 | head -n -4 | awk '{gsub(/"/, "\\\""); printf "%s\\n", $0}') # Slack formatting
49
- echo "error_message=$ERROR_MSG"
+ echo "$ERROR_MSG"
50
echo "error_message=$ERROR_MSG" >> $GITHUB_OUTPUT
51
52
if grep -q "BUILD FAILURE" mvn_output.log; then
0 commit comments