Skip to content

Commit 85ee082

Browse files
committed
Fix merging
1 parent 698b0b5 commit 85ee082

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ jobs:
9494
- name: Merge fitting results
9595
run: |
9696
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
97+
tail -q -n +2 artifacts/Working_Data/test_output_*.csv >> test_output.csv
9898
- name: Merge timing results
9999
run: |
100100
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
101+
tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv
102102
- name: Upload merged artifacts
103103
uses: actions/upload-artifact@v3
104104
with:

0 commit comments

Comments
 (0)