Skip to content

Commit

Permalink
feat: add to summary
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Oct 27, 2023
1 parent dd3f1a8 commit 477b61f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 477b61f

Please sign in to comment.