Skip to content

Commit 2758002

Browse files
committed
fix: ci
1 parent 2ec161c commit 2758002

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/build-feature.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ jobs:
123123
# Create a "doc" directory and move karate reports to it
124124
- name: Get report
125125
run: |
126-
mkdir -p doc
127-
mv ./nrt/target/karate-reports/* ./doc
126+
mkdir -p doc/karate
127+
mv ./nrt/target/karate-reports/* ./doc/karate
128128
129129
- uses: actions/upload-artifact@master
130130
with:
131-
name: karate
131+
name: karate-reports
132132
path: doc/karate
133133
# - name: Upload artifact
134134
# uses: actions/upload-pages-artifact@v1
@@ -165,7 +165,7 @@ jobs:
165165

166166
- uses: actions/upload-artifact@master
167167
with:
168-
name: gatling
168+
name: gatling-reports
169169
path: doc/gatling
170170

171171
# - name: Upload artifact
@@ -220,7 +220,6 @@ jobs:
220220
.addQuote('All times are in millisecond (ms). RPS means "Requests per Second"')
221221
.write()
222222
}
223-
224223
225224
deploy_reports:
226225
name: Deploy Reports
@@ -235,13 +234,13 @@ jobs:
235234
- name: Retrieve saved Non Regression Test
236235
uses: actions/download-artifact@v3
237236
with:
238-
name: karate
237+
name: karate-reports
239238
path: doc/karate
240239

241240
- name: Retrieve saved Loading Test
242241
uses: actions/download-artifact@v3
243242
with:
244-
name: gatling
243+
name: gatling-reports
245244
path: doc/gatling
246245

247246
- name: Upload artifact

0 commit comments

Comments
 (0)