Skip to content

Commit 00c7cae

Browse files
committed
[rust] Get recordings from runners
1 parent c72716c commit 00c7cae

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci-rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ jobs:
7171
name: selenium-manager-windows
7272
path: selenium-manager-windows.exe
7373
retention-days: 6
74+
- name: Store recordings (Windows)
75+
uses: actions/upload-artifact@v4
76+
with:
77+
name: win-recordings
78+
path: |
79+
C:\Users\runneradmin\.cache\selenium\recordings\*.avi
7480
7581
windows-debug:
7682
name: "Windows Debug"
@@ -130,6 +136,12 @@ jobs:
130136
name: selenium-manager-linux
131137
path: selenium-manager-linux
132138
retention-days: 6
139+
- name: Store recordings (Linux)
140+
uses: actions/upload-artifact@v4
141+
with:
142+
name: linux-recordings
143+
path: |
144+
$HOME/.cache/selenium/recordings/*.avi
133145
134146
linux-debug:
135147
name: "Linux Debug"
@@ -192,6 +204,12 @@ jobs:
192204
name: selenium-manager-macos
193205
path: rust/target/selenium-manager-macos
194206
retention-days: 6
207+
- name: Store recordings (macOS)
208+
uses: actions/upload-artifact@v4
209+
with:
210+
name: mac-recordings
211+
path: |
212+
$HOME/.cache/selenium/recordings/*.avi
195213
196214
macos-debug:
197215
name: "MacOS Debug"

0 commit comments

Comments
 (0)