We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47750e3 commit 4ed72f1Copy full SHA for 4ed72f1
.github/workflows/build.yml
@@ -12,3 +12,21 @@ jobs:
12
steps:
13
- uses: browser-actions/setup-chrome@v1
14
- run: chrome --version
15
+ - name: Report Python version
16
+ run: file `which python3`
17
+ - name: Install screenshot utility
18
+ run: python3 -m pip install screenshot
19
+ - name: Launch Chrome
20
+ run: chrome
21
+ - name: Take screenshot of Chrome
22
+ run: screenshot chrome --filename chrome.png --shadow
23
+ - name: Upload screenshot
24
+ uses: actions/upload-artifact@v4
25
+ with:
26
+ name: chrome.png
27
+ path: chrome*.pjng
28
+ - name: Download artifact
29
+ uses: actions/download-artifact@v4
30
31
+ name: chrome
32
+
0 commit comments