Skip to content

Commit

Permalink
try another way
Browse files Browse the repository at this point in the history
Signed-off-by: Lilith Oberhauser <lilith.oberhauser@huawei.com>
  • Loading branch information
lilith218 committed May 16, 2024
1 parent 80559c0 commit e8636ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ jobs:
- run: |
CSV_FILES=$(find . -type f -name "*.csv")
echo $CSV_FILES
cat "${CSV_FILES[0]}" | head -n 1 > verification_report.csv
cat "${CSV_FILES[@]}" | grep -E --invert '^#' >> verification_report.csv
for f in ${CSV_FILES}; do
cat $f | grep -E --invert '^#' >> verification_report.csv
done
cat verification_report.csv
- name: upload final report
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit e8636ed

Please sign in to comment.