We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89cc97b commit 5517978Copy full SHA for 5517978
1 file changed
.github/workflows/e2e-test.yml
@@ -219,7 +219,8 @@ jobs:
219
run: |
220
filename=$(ls | grep -E '^[0-9]{12}_sdk_test_report\.xml$')
221
test_output=$(python3 e2e_scripts/tod_scripts/generate_test_summary.py "${filename}")
222
- echo "summary=$test_output" >> "$GITHUB_OUTPUT"
+ test_output_encoded=$(echo -n "$test_output" | base64)
223
+ echo "summary=$test_output_encoded" >> "$GITHUB_OUTPUT"
224
225
notify-slack:
226
runs-on: ubuntu-latest
0 commit comments