From 477b61fa90dfd3f1c62a0fdf5e02ccfa9353345a Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Fri, 27 Oct 2023 03:07:47 -0400 Subject: [PATCH] feat: add to summary --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad415b3..a560238 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,12 @@ jobs: id: datasets working-directory: qadb run: | - echo datasets=$(ls -d pass*/* | jq -Rcs '{"dataset": split("\n")[:-1]}') >> $GITHUB_OUTPUT + ls -d pass*/* | jq -Rs '{"dataset": split("\n")[:-1]}') > list.json + echo "### List of Datasets" >> $GITHUB_STEP_SUMMARY + echo '```json' >> $GITHUB_STEP_SUMMARY + cat list.json | xargs -0 -I{} echo {} >> $GITHUB_STEP_SUMMARY + echo '```' >> $GITHUB_STEP_SUMMARY + echo datasets=$(jq -c . list.json) >> $GITHUB_OUTPUT # check consistency between Groovy and C++ APIs groovy_vs_cpp: