Skip to content

Commit 827eeb8

Browse files
authored
fix benchmark (#635)
1 parent 17bb4c2 commit 827eeb8

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/benchmark.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
PR-BENCH-16: ${{ steps.benchmark-pr.outputs.BENCH_RESULT16 }}
1616
PR-BENCH-18: ${{ steps.benchmark-pr.outputs.BENCH_RESULT18 }}
1717
PR-BENCH-20: ${{ steps.benchmark-pr.outputs.BENCH_RESULT20 }}
18-
MAIN-BENCH-14: ${{ steps.benchmark-main.outputs.BENCH_RESULT14 }}
19-
MAIN-BENCH-16: ${{ steps.benchmark-main.outputs.BENCH_RESULT16 }}
20-
MAIN-BENCH-18: ${{ steps.benchmark-main.outputs.BENCH_RESULT18 }}
21-
MAIN-BENCH-20: ${{ steps.benchmark-main.outputs.BENCH_RESULT20 }}
18+
MASTER-BENCH-14: ${{ steps.benchmark-master.outputs.BENCH_RESULT14 }}
19+
MASTER-BENCH-16: ${{ steps.benchmark-master.outputs.BENCH_RESULT16 }}
20+
MASTER-BENCH-18: ${{ steps.benchmark-master.outputs.BENCH_RESULT18 }}
21+
MASTER-BENCH-20: ${{ steps.benchmark-master.outputs.BENCH_RESULT20 }}
2222
strategy:
2323
matrix:
2424
node-version: [14, 16, 18, 20]
@@ -47,7 +47,7 @@ jobs:
4747
content="${content//$'\r'/'%0D'}"
4848
echo "::set-output name=BENCH_RESULT${{matrix.node-version}}::$content"
4949
50-
# main benchmark
50+
# master benchmark
5151
- uses: actions/checkout@v3
5252
with:
5353
ref: 'master'
@@ -82,9 +82,9 @@ jobs:
8282
```
8383
${{ needs.benchmark.outputs.PR-BENCH-14 }}
8484
```
85-
**MAIN**:
85+
**MASTER**:
8686
```
87-
${{ needs.benchmark.outputs.MAIN-BENCH-14 }}
87+
${{ needs.benchmark.outputs.MASTER-BENCH-14 }}
8888
```
8989
9090
---
@@ -94,9 +94,9 @@ jobs:
9494
```
9595
${{ needs.benchmark.outputs.PR-BENCH-16 }}
9696
```
97-
**MAIN**:
97+
**MASTER**:
9898
```
99-
${{ needs.benchmark.outputs.MAIN-BENCH-16 }}
99+
${{ needs.benchmark.outputs.MASTER-BENCH-16 }}
100100
```
101101
102102
---
@@ -106,9 +106,9 @@ jobs:
106106
```
107107
${{ needs.benchmark.outputs.PR-BENCH-18 }}
108108
```
109-
**MAIN**:
109+
**MASTER**:
110110
```
111-
${{ needs.benchmark.outputs.MAIN-BENCH-18 }}
111+
${{ needs.benchmark.outputs.MASTER-BENCH-18 }}
112112
113113
---
114114
@@ -117,9 +117,9 @@ jobs:
117117
```
118118
${{ needs.benchmark.outputs.PR-BENCH-20 }}
119119
```
120-
**MAIN**:
120+
**MASTER**:
121121
```
122-
${{ needs.benchmark.outputs.MAIN-BENCH-20 }}
122+
${{ needs.benchmark.outputs.MASTER-BENCH-20 }}
123123
```
124124
125125
- uses: actions-ecosystem/action-remove-labels@v1

0 commit comments

Comments
 (0)