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 0499da0 commit b5e1b56Copy full SHA for b5e1b56
.github/workflows/reports.yml
@@ -39,12 +39,11 @@ jobs:
39
output=$(docker exec trino \
40
java -Dorg.jline.terminal.dumb=true -jar /usr/bin/trino \
41
trino://localhost:8080/trinocicd/v2 \
42
- -f /sql/ci-cd/$name.sql \
43
- --output-format=MARKDOWN)
+ -f /sql/ci-cd/$name.sql)
44
45
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
46
echo "$name<<$EOF" >> $GITHUB_OUTPUT
47
- echo "$output" >> $GITHUB_OUTPUT
+ echo '```'"$output"'```' >> $GITHUB_OUTPUT
48
echo "$EOF" >> $GITHUB_OUTPUT
49
done
50
- name: Post to a Slack channel
0 commit comments