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 698b0b5 commit 85ee082Copy full SHA for 85ee082
.github/workflows/analysis.yml
@@ -94,11 +94,11 @@ jobs:
94
- name: Merge fitting results
95
run: |
96
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
+ tail -q -n +2 artifacts/Working_Data/test_output_*.csv >> test_output.csv
98
- name: Merge timing results
99
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
+ tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv
102
- name: Upload merged artifacts
103
uses: actions/upload-artifact@v3
104
with:
0 commit comments