Skip to content

Commit a5d8a25

Browse files
committed
fix: resolve artifact upload conflict by enabling overwrite
Previously, the workflow failed with a 409 Conflict error due to existing artifacts in the workflow run. To address this, I added `overwrite: true` to all `upload-artifact` steps, ensuring that artifacts are replaced instead of causing conflicts.
1 parent 023c88d commit a5d8a25

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
path: |
7878
test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv
7979
test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv
80+
overwrite: true
8081

8182
merge:
8283
runs-on: ubuntu-latest
@@ -101,6 +102,7 @@ jobs:
101102
path: |
102103
test_output.csv
103104
test_duration.csv
105+
overwrite: true
104106

105107
analyze:
106108
runs-on: ubuntu-latest
@@ -141,6 +143,8 @@ jobs:
141143
durations.pdf
142144
curve_plot.pdf
143145
fitted_curves.pdf
146+
overwrite: true
147+
144148

145149
compare:
146150
runs-on: ubuntu-latest
@@ -171,3 +175,4 @@ jobs:
171175
path: |
172176
test_reference.csv
173177
test_results.csv
178+
overwrite: true

0 commit comments

Comments
 (0)