Skip to content

Commit 3c8d33c

Browse files
committed
[rust] Change paths and recording names
1 parent 2307bfe commit 3c8d33c

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/bazel.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)