Skip to content

Commit

Permalink
option for ',' separator in aggregated report
Browse files Browse the repository at this point in the history
  • Loading branch information
l0uden committed Jan 16, 2025
1 parent 06c239a commit 97a1019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-score-vizro-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
cd /home/runner/work/vizro/vizro/
ls */*.csv | head -n1 | xargs head -n1 > report-aggregated-${{ steps.date.outputs.date }}.csv && tail -n+2 -q */*.csv >> report-aggregated-${{ steps.date.outputs.date }}.csv
# replace all timestamps in aggregated report to current date
gawk -F, -i inplace 'FNR>1 {$1="${{ steps.date.outputs.date }}"} {print}' report-aggregated-${{ steps.date.outputs.date }}.csv
gawk -F, -i inplace 'FNR>1 {$1="${{ steps.date.outputs.date }}"} {print}' OFS=, report-aggregated-${{ steps.date.outputs.date }}.csv
- name: Report artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 97a1019

Please sign in to comment.