Skip to content

Commit cdf6620

Browse files
committed
Use the github run id in the upload results name.
1 parent 1c1978f commit cdf6620

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/datachannel_echo-test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ jobs:
4747
- name: Upload result
4848
uses: actions/upload-artifact@v4
4949
with:
50-
name: results
51-
overwrite: true
50+
name: results-${{ github.run_id }}
5251
path: |
5352
${{ matrix.server }}_${{ matrix.client }}_result.csv
5453

.github/workflows/peerconnection-test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ jobs:
6767
- name: Upload result
6868
uses: actions/upload-artifact@v4
6969
with:
70-
overwrite: true
71-
name: results
70+
name: results-${{ github.run_id }}
7271
path: |
7372
${{ matrix.server }}_${{ matrix.client }}_result.csv
7473

0 commit comments

Comments
 (0)