File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -191,23 +191,20 @@ jobs:
191191 if : inputs.save-recordings && inputs.os == 'windows'
192192 uses : actions/upload-artifact@v4
193193 with :
194- name : win-recordings
195- path : |
196- C:\Users\runneradmin\.cache\selenium\recordings\*.avi
194+ name : recordings-win
195+ path : C:\Users\runneradmin\.cache\selenium\recordings\*.avi
197196 retention-days : 6
198197 - name : Save recordings (Linux)
199198 if : inputs.save-recordings && inputs.os == 'ubuntu'
200199 uses : actions/upload-artifact@v4
201200 with :
202- name : linux-recordings
203- path : |
204- /home/runner/.cache/selenium/recordings/*.avi
201+ name : recordings-linux
202+ path : /home/runner/.cache/selenium/recordings/*.avi
205203 retention-days : 6
206204 - name : Save recordings (macOS)
207205 if : inputs.save-recordings && inputs.os == 'macos'
208206 uses : actions/upload-artifact@v4
209207 with :
210- name : macos-recordings
211- path : |
212- /home/runner/.cache/selenium/recordings/*.avi
208+ name : recordings-macos
209+ path : /home/runner/.cache/selenium/recordings/*.avi
213210 retention-days : 6
You can’t perform that action at this time.
0 commit comments