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 55e85ba commit 698b0b5Copy full SHA for 698b0b5
.github/workflows/analysis.yml
@@ -93,10 +93,12 @@ jobs:
93
path: artifacts
94
- name: Merge fitting results
95
run: |
96
- cat artifacts/Working_Data/test_output_*.csv > test_output.csv
+ head -n 1 $(ls artifacts/Working_Data/test_output_*.csv | head -n 1) > test_output.csv
97
+ tail -q -n +2 test_output_*.csv > test_output.csv
98
- name: Merge timing results
99
- cat artifacts/Working_Data/test_duration_*.csv > test_duration.csv
100
+ head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv
101
+ tail -q -n +2 test_duration_*.csv > test_duration.csv
102
- name: Upload merged artifacts
103
uses: actions/upload-artifact@v3
104
with:
0 commit comments